{% extends "wagtailadmin/base.html" %} {% load i18n %} {% block titletag %}{% translate "Showable Blocks Form" %}{% endblock %} {% block content %}
{% translate "Enable/Disable Blocks" as title %} {% include "wagtailadmin/shared/header.html" with title=title icon="view" %}
{% if page_types %}

{% translate "Usable for the following page types" %}

{% endif %}
{% csrf_token %}
{% for f in form.showable_fields %} {% endfor %} {% for field in form %} {{ field }} {% endfor %}
{{ f.label }}

{{ field.label_tag }}

{% if field.help_text %}

{{ field.help_text }}

{% endif %} {{ field.name }}
{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %}