{% extends "base.html" %} {% block title %}My Documents - Mini SpecsComply Pro{% endblock %} {% block content %}

My Documents

Upload New Document
{% if documents %}
{% for doc in documents %} {% endfor %}
Document Type Upload Date Status Actions
{{ doc.filename }} {% if doc.description %}
{{ doc.description }}
{% endif %}
{{ doc.document_type|replace('_', ' ')|title }} {{ doc.upload_date }} {% if doc.status == 'completed' %} Completed {% elif doc.status == 'processing' %} Processing {% else %} Failed {% endif %} {% if doc.status == 'completed' %}
View Analysis
{% endif %}
{% else %}
No documents uploaded yet

Upload your first document to get started with compliance analysis.

Upload Document
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}