{% extends 'wagtailadmin/reports/base_report.html' %} {% load i18n wagtailadmin_tags %} {% block results %} {% if object_list %}
{% trans 'Title' %} | {% trans 'Status' %} | {% trans 'Last published' %} | {% trans 'Last published by' %} | {% trans 'Type' %} |
---|---|---|---|---|
{{ page.specific_deferred.get_admin_display_title }} | {% include "wagtailadmin/shared/page_status_tag.html" with page=page %} |
{% blocktrans with time_period=page.last_published_at|timesince %}
{{ time_period }} ago
{% endblocktrans %}
|
{% include "wagtailadmin/shared/user_avatar.html" with user=page.last_published_by username=page.last_published_by_user %} | {{ page.content_type|format_content_type }} |
{% trans "No pages found." %}
{% endif %} {% endblock %} {% block no_results %}{% trans "No pages found." %}
{% endblock %}