{% extends "wagtailadmin/base.html" %} {% load wagtailadmin_tags i18n %} {% block content %}

{% blocktrans with tag_name=tag.name %}Objects using tag: {{ tag_name }}{% endblocktrans %}

{% if object_list %}
{% csrf_token %} {% for item in object_list %} {% with page=item.obj %} {% endwith %} {% endfor %}
{% trans "Title" %} {% trans "Object Type" %} {% trans "Last Edited" %}
{% if item.edit_url %} {{ page }} {% else %} {{ page }} {% endif %} {{ item.model_name }} {% if page.latest_revision_created_at %} {{ page.latest_revision_created_at|date:"SHORT_DATETIME_FORMAT" }} {% else %} — {% endif %}
{% if can_add_pages %} {% trans "Add pages to this tag" %} {% endif %} {% trans "Back to edit tag" %}
{% include "wagtailadmin/shared/pagination_nav.html" with items=page_obj %}
{% else %}

{% trans "No objects are currently tagged with this tag." %}

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}