{% extends 'wagtailadmin/reports/base_page_report_results.html' %} {% load i18n wagtailadmin_tags %} {% block results %} {% for page in object_list %} {% endfor %}
{% trans 'Title' %} {% trans 'Status' %} {% trans 'Last published' %} {% trans 'Last published by' %} {% trans 'Type' %}
{{ page.specific_deferred.get_admin_display_title }} {% i18n_enabled as show_locale_labels %} {% if show_locale_labels %} {% locale_label_from_id page.locale_id as locale_label %} {% status locale_label classname="w-status--label" %} {% endif %} {% include "wagtailadmin/shared/page_status_tag.html" with page=page %} {% human_readable_date page.last_published_at %} {% include "wagtailadmin/shared/user_avatar.html" with user=page.last_published_by username=page.last_published_by_user %} {{ page.content_type|format_content_type }}
{% endblock %} {% block no_results_message %}

{% trans "No pages found." %}

{% endblock %}