{% 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" %}
{% csrf_token %}
{% for field in form %}
{{ field }} {{ field.label_tag }} {% if field.help_text %}

{{ field.help_text }}

{% endif %}
{% endfor %}
{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %}