{% extends 'layout_repo.html' %} {% from 'include/datatables.html' import datatables %} {% set active_page='repo' %} {% set active_repo_page='browse' %} {% block title %} {% trans %}Files{% endtrans %} {% endblock %} {% block content %} {% call datatables(_('Files')) %} {% trans %}Name{% endtrans %} {% trans %}Size{% endtrans %} {% trans %}Version(s){% endtrans %} {% for entry in dir_entries %} 45 and entry.display_name)) }}> {% if entry.isdir %}<DIR>{% endif %} {% if not entry.exists %}<DELETED>{% endif %} {{ entry.display_name | truncate(45,True) }} {% if entry.isdir %} {% elif not entry.exists %} - {% else %} {{ entry.file_size | filesize }} {% endif %} {% if entry.change_dates %}
{{ entry.change_dates | length }}
{% endif %} {% endfor %} {% endcall %} {% endblock %}