{% extends "wagtailadmin/generic/base.html" %} {% load static i18n wagtail_admin_files wagtailadmin_tags %} {% block extra_css %} {{ block.super }} {% endblock %} {% block extra_js %} {{ block.super }} {% endblock %} {% block main_content %} {% if WAGTAIL_VERSION < 6 %}
{% trans "Upload new file" %} {% trans "View Groups" %}
{% endif %} {% if object_list %} {% block results %}
{% trans "File Extension:" as ext_text %} {% for object in object_list %} {% include "wagtail_admin_files/partials/uploaded_file.html" with object=object ext_text=ext_text %} {% endfor %}
{% endblock %} {% block pagination %} {% if is_paginated %}
{% include "wagtailadmin/shared/pagination_nav.html" with items=page_obj linkurl=index_url %}
{% endif %} {% endblock %} {% else %}
{% block no_results_message %}

{{ no_results_message|capfirst }}

{% endblock %}
{% endif %} {% endblock %}