{% extends 'wagtailadmin/reports/base_report_results.html' %} {% load i18n wagtailadmin_tags %} {% block results %} {% for task_state in object_list %} {% endfor %}
{% trans 'Task' %} {% trans 'Page/Snippet' %} {% trans 'Status' %} {% trans 'Started at' %} {% trans 'Completed at' %}
{{ task_state.task }} {% with task_state.workflow_state.content_object as object %} {% latest_str object %} {% i18n_enabled as show_locale_labels %} {% if show_locale_labels and object.locale_id %} {% locale_label_from_id object.locale_id as locale_label %} {% status locale_label classname="w-status--label" %} {% endif %} {% endwith %} {% status task_state.get_status_display classname="w-status--primary" %} {{ task_state.started_at }} {{ task_state.finished_at|default:"-" }}
{% endblock %} {% block no_results_message %}

{% trans "No pages/snippets have been submitted for moderation yet" %}

{% endblock %}