{% extends "base.html" %} {% block title %}{{ company.name }} - Document Management{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

{{ company.name }} - Documents

Back to Company All Companies
{% if success %} {% endif %} {% if error %} {% endif %}

{{ stats.total_documents }}

Total Documents

{{ stats.formatted_total_size }}

Total Size

{{ stats.recent_uploads }}

Recent Uploads

{{ stats.by_type | length }}

Document Types

Upload Documents

Drag and drop files here or click to browse

Documents ({{ documents | length }})
{% if documents and documents | length > 0 %}
{% for document in documents %}
{% if document.is_pdf %} {% elif document.is_image %} {% elif document.mime_type == "application/msword" %} {% else %} {% endif %}
{{ document.name }}

{{ document.document_type_str }}
Size: {{ document.formatted_file_size }}
Uploaded: {{ document.formatted_upload_date }}
By: {{ document.uploaded_by }} {% if document.is_public %}
Public {% endif %}

{% if document.description %}

{{ document.description }}

{% endif %}
{% endfor %}
{% else %}

No Documents Found

Upload your first document using the form above.

{% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}