{% extends "layouts/base.html" %} {% block title %}Company Files{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Company Files

{% if file_limit is none %} You have unlimited file uploads{% if active_package_title %} ({{ active_package_title }}){% endif %}. {% else %} {% if active_package_title %} Current package {{ active_package_title }} allows {{ file_limit }} file(s). {% else %} Free tier allows {{ file_limit }} file(s). {% endif %} You have {{ remaining_files if remaining_files is not none else 0 }} upload(s) remaining{% if remaining_days is not none %} and {{ remaining_days }} day{% if remaining_days != 1 %}s{% endif %} left on the plan{% endif %}. {% endif %}
{% for folder in folders %}

{{ folder[1] }}

{% endfor %} {% for doc in documents %}
{% if doc[1].endswith('.pdf') %} {% elif doc[1].endswith('.docx') or doc[1].endswith('.doc') %} {% else %} {% endif %}

{{ doc[1] }}

Uploaded: {{ doc[2].strftime('%Y-%m-%d %H:%M') }}

{% endfor %} {% if not folders and not documents %}

No files or folders in this location

{% endif %}
{% if pagination %}
Showing {{ pagination.start_item }} to {{ pagination.end_item }} of {{ pagination.total_items }} items
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}