{% extends "wagtailadmin/base.html" %} {% load i18n %} {% block titletag %}{% blocktrans with form_title=form_page.title|capfirst %}Submissions of {{ form_title }}{% endblocktrans %}{% endblock %} {% block extra_js %} {{ block.super }} {% include "wagtailadmin/shared/datetimepicker_translations.html" %} {% endblock %} {% block content %}

{% blocktrans with form_title=form_page.title|capfirst %}Form data {{ form_title }}{% endblocktrans %}

{% if submissions %} {% include "wagtailforms/list_submissions.html" %} {% include "wagtailadmin/shared/pagination_nav.html" with items=submissions is_searching=False linkurl='-' %} {# Here we pass an invalid non-empty URL name as linkurl to generate pagination links with the URL path omitted #} {% else %}

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

{% endif %}
{% endblock %}