{% extends "./action_confirm.html" %} {% load i18n wagtailadmin_tags %} {% block form_content %} {% if log_entries %}
{% translate "Changes since last publish" as panel_heading %} {% panel id="wagtail-fedit-log-actions" icon="draft" heading=panel_heading %} {% page_permissions view.object as page_perms %} {% for entry in log_entries %} {% if is_page %} {% else %} {% endif %} {% endfor %} {% if has_more_entries and view_more_url %} {% endif %}
{% trans 'Action' %} {% trans 'User' %} {% trans 'Date / Time' %}
{% if entry.revision %}{% endif %} {{ entry.message }} {% if entry.revision %}{% endif %} {% if entry.comment %} {% trans "Comment" %}: {{ entry.comment }} {% endif %} {% if entry.revision and entry.content_changed and LOG_ACTION_TEMPLATES_AVAILABLE %} {% if entry.revision == view.object.latest_revision %}{% trans 'Current draft' as status_label %}{% status status_label classname="w-status--primary" %}{% endif %} {% include "wagtailadmin/pages/revisions/_actions.html" with revision=entry.revision page=view.object %} {% endif %} {% include "wagtailadmin/shared/user_avatar.html" with user=entry.user username=entry.user_display_name %} {% human_readable_date entry.timestamp %}
{% blocktrans trimmed with view_more_url=view_more_url%} This object has more changes. View all changes. {% endblocktrans %}
{% endpanel %}
{% endif %} {{ block.super }} {% endblock %}