{% extends "layout.html" %} {% block content %}

{{ document.original_filename }}

Back to Dashboard
Document Viewer
{% if document.file_type == 'pdf' %}
{% elif document.file_type == 'image' %} {{ document.original_filename }} {% elif document.file_type == 'video' %}
{% else %}
Preview not available for this file type. Please download the file to view its contents.
{% endif %}
Download Share {% if document.user_id == session.user_id or session.role == 'admin' %} Delete {% endif %}
Version History
{% for version in versions %} {% endfor %}
Version Date Actions
v{{ version.version_number }} {{ version.created_at }} Download
Document Information
  • File Type {{ document.file_type }}
  • Size {{ (document.file_size / 1024)|round(1) }} KB
  • Uploaded {{ document.created_at.split(' ')[0] }}
  • Visibility {{ document.visibility }}
  • Versions {{ versions|length }}
Sharing Information
{% if shares %}
Shared With
    {% for share in shares %}
  • {% if share.shared_with %} {{ share.username }} {% elif share.share_link %} Via Link {% if share.expires_at %} Expires: {{ share.expires_at.split(' ')[0] }} {% endif %} {% endif %}
  • {% endfor %}
{% else %}

This document hasn't been shared yet.

{% endif %} Manage Sharing
{% endblock %}