{% extends "wagtailadmin/base.html" %} {% load i18n %} {% load static %} {% load wagtailadmin_tags %} {% block titletag %}{% trans "Block Inventory" %}{% endblock %} {% block content %} {% trans "Block Inventory" as header_str %} {% include "wagtailadmin/shared/header.html" with title=header_str icon="placeholder" %}
{{ formset.management_form }} {% for form in formset %}
{{ form.has }} {{ form.block }}
{% endfor %}
{% if pages %}

{% blocktrans count counter=pages.paginator.count %} There is one match {% plural %} There are {{ counter }} matches {% endblocktrans %}

{% include "wagtailadmin/pages/listing/_list_explore.html" with show_parent=1 allow_navigation=0 %} {% paginate pages base_url=base_url classnames="navigate-pages" %}
{% else %}

{% blocktrans %}Sorry, there are no matching pages.{% endblocktrans %}

{% endif %}
{% endblock %}