{% extends 'wagtailadmin/reports/base_report.html' %} {% load i18n wagtailadmin_tags %} {% block results %} {% if object_list %}
{% trans 'Page' %} | {% trans 'Action' %} | {% trans 'User' %} | {% trans 'Date / Time' %} |
---|---|---|---|
{% if entry.page %} {% page_permissions entry.page as page_perms %} {% if page_perms.can_edit %} {{ entry.label }} {% else %} {{ entry.label }} {% endif %} {% else %} {{ entry.label }} {% endif %} | {{ entry|format_action_log_message }} | {% include "wagtailadmin/shared/user_avatar.html" with user=entry.user username=entry.user_display_name %} |
{% blocktrans with time_period=entry.timestamp|timesince %}{{ time_period }} ago{% endblocktrans %}
|
{% trans "No log entries found." %}
{% endif %} {% endblock %} {% block no_results %}{% trans "No log entries found." %}
{% endblock %}