{% extends 'shatailadmin/reports/base_report.html' %} {% load i18n shatailadmin_tags %} {% block results %} {% if object_list %} {% 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 %} {{ locale_label }} {% endif %} {% include "shatailadmin/shared/page_status_tag.html" with page=page %}
{% blocktrans trimmed with time_period=page.last_published_at|timesince %} {{ time_period }} ago {% endblocktrans %}
{% include "shatailadmin/shared/user_avatar.html" with user=page.last_published_by username=page.last_published_by_user %} {{ page.content_type|format_content_type }}
{% else %}

{% trans "No pages found." %}

{% endif %} {% endblock %} {% block no_results %}

{% trans "No pages found." %}

{% endblock %}