{% extends "main.html" %} {% load markdown_deux_tags %} {% block content %}

Your Dashboard

View and manage your analyzed documents

Go to Settings
{% for document in documents %}
{{ document.title }} thumbnail

{{ document.title }}

{{ document.status|title }}

Created: {{ document.created_at }}

Last Updated: {{ document.updated_at }}

{% if document.content %}

Content Preview:

{{ document.content|truncatechars_html:100|markdown }}
{% endif %}
View Export
{% csrf_token %}
{% empty %}

You haven't uploaded any documents yet.

{% endfor %}

Upload a New Document

{% csrf_token %}
{% endblock %}