{% 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
Status: {{ document.status|title }}
Created: {{ document.created_at|date:"d/m/Y H:i" }}
Updated: {{ document.updated_at|date:"d/m/Y H:i" }}
{% 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 %}