{% extends 'wagtailadmin/reports/base_report.html' %} {% load i18n wagtailadmin_tags %} {% block results %} {% if object_list %}
{% trans 'Name' %} | {% trans 'Type' %} | {% trans 'Action' %} | {% trans 'User' %} | {% trans 'Date / Time' %} |
---|---|---|---|---|
{% if entry.edit_url %} {{ entry.label }} {% else %} {{ entry.label }} {% endif %} | {{ entry.content_type|format_content_type }} | {{ entry.message }} | {% include "wagtailadmin/shared/user_avatar.html" with user=entry.user username=entry.user_display_name %} |
{% blocktrans trimmed 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 %}