{% load i18n wagtailadmin_tags %} {% if workflow_states %} {% panel id="objects-in-workflow" heading=_("Your pages and snippets in a workflow") classname="w-panel--dashboard" %}
{% trans "Title" %} | {% trans "Language" %} | {% trans "Privacy and access" %} | {% trans "Task" %} | {% trans "Task started" %} | |
---|---|---|---|---|---|
{% admin_edit_url obj as edit_url %}
{% if page_perms.can_edit or not is_page and edit_url %}
{% latest_str obj %}
{% else %}
{% latest_str obj %}
{% endif %}
|
{% i18n_enabled as show_locale_labels %} {% if show_locale_labels and obj.locale_id %} {% locale_label_from_id obj.locale_id as locale_label %} {% status locale_label classname="w-status--label" %} {% endif %} | {% if is_page %} {% include "wagtailadmin/pages/listing/_privacy_indicator.html" with page=obj %} {% endif %} {% include "wagtailadmin/pages/listing/_locked_indicator.html" with page=obj %} | {% if workflow_state.current_task_state.status == 'rejected' %} {% icon name="warning" classname="w-h-4 w-w-4 w-align-text-top" %} {% trans "Changes requested at" %} {% elif workflow_state.current_task_state.status == 'in_progress' %} {% trans "Awaiting" %} {% endif %} {{ workflow_state.current_task_state.task.name }} | {% human_readable_date workflow_state.current_task_state.started_at %} | {# Deliberately empty #} |