{% extends "wagtailadmin/base.html" %} {% load i18n wagtailadmin_tags %} {% block titletag %}{% blocktrans trimmed with form_title=form_page.title|capfirst %}Submissions of {{ form_title }}{% endblocktrans %}{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %} {% block content %} {% fragment as form_actions %} {% include view.export_buttons_template_name %} {% endfragment %} {% include "wagtailadmin/shared/header.html" with classname="w-header--no-border" title=page_title subtitle=form_page.title|capfirst icon="form" merged=1 extra_actions=form_actions %}
{% if submissions %}
{% include "wagtailforms/list_submissions.html" %} {% include "wagtailadmin/shared/pagination_nav.html" with items=page_obj %}
{% else %}

{% blocktrans trimmed with title=form_page.title %}There have been no submissions of the '{{ title }}' form.{% endblocktrans %}

{% endif %}

{% trans 'Filter' %}

{% for field in select_date_form %}
  • {% include "wagtailadmin/shared/field.html" with field=field %}
  • {% endfor %}
    {% endblock %}