{% extends "base.html" %} {% load i18n %} {% block title %} {% translate "Documents" %} {% endblock %} {% block content %}

{% translate "Files" %}

{% translate "Add file" %}
{% blocktranslate trimmed with used=quota_used|filesizeformat free=quota_free|filesizeformat %} {{ free }} available {% endblocktranslate %} {% for document in document_list %} {% endfor %}
{% translate "Title" %} {% translate "Uploaded by" %} {% translate "Uploaded at" %} {% translate "Action" %}
{{ document.title }} {{ document.uploader }} {{ document.updated_at }} {% translate "Download" %} {% translate "Edit" %} {% translate "Delete" %}
{% translate "Total" %}: {{ document_list.count }} {% translate "files" %} {% translate "with" %} {{ quota_used|filesizeformat }} {% endblock %}