{% extends "wagtailadmin/base.html" %} {% load i18n wagtailadmin_tags %} {% block titletag %}{% translate "Showable Blocks" %}{% endblock %} {% block content %}
{% translate "Wagtail Showables Blocks" as title %} {% include "wagtailadmin/shared/header.html" with title=title icon="view" %} {% translate "Displaying" as display_text %} {% translate "Hidden" as hidden_text %}
{% if "wagtail_showables.can_toggle_showing" in perms %} {% translate "Edit active blocks" %} {% endif %} {% for registered in registry %}
{% if registered.is_shown %}
{% icon name="view" title=display_text %}
{% else %}
{% icon name="no-view" title=hidden_text %}
{% endif %}

{{ registered.label }}

{{ registered.import_path }}

{{ registered.help_text }}

{% endfor %}
{% endblock %}