{% extends "wagtailadmin/base.html" %} {% load wagtailadmin_tags %} {% load wagtailcore_tags %} {% load i18n %} {% load l10n %} {% block titletag %}{% blocktrans with title=page.get_admin_display_title page_type=content_type.model_class.get_verbose_name %}Requests For {{ page_type }}: {{ title }}{% endblocktrans %}{% endblock %} {% block bodyclass %}page-editor {% if page.live %}page-is-live{% endif %} model-{{ content_type.model }} {% if page.locked %}page-locked{% endif %}{% endblock %} {% block content %} {% page_permissions page as page_perms %}
{% explorer_breadcrumb page %}

{% blocktrans with title=page.get_admin_display_title page_type=content_type.model_class.get_verbose_name %}Requests For {{ page_type }} {{ title }}{% endblocktrans %}

{% trans "Status" %} {% include "wagtailadmin/shared/page_status_tag.html" with page=page %} {% include "wagtailadmin/pages/_privacy_switch.html" with page=page page_perms=page_perms only %} {% include "wagtailadmin/pages/_lock_switch.html" %}
{% for request in requests %} {% endfor %}
Request Date Variant Email
{{request.created_date|date}} {{request.variant}} {% if request.email %}{{request.email}}{% else %}Not Given{% endif %}
{% endblock %} {% block extra_css %} {{ block.super }} {% include "wagtailadmin/pages/_editor_css.html" %} {% endblock %}