{% extends "wagtailadmin/base.html" %} {% load wagtailadmin_tags i18n static wagtailcore_tags %} {% block titletag %}{% trans 'Editor Guide' %}{% endblock %} {% block content %} {% trans "Editor Guide" as title_trans %} {% include "wagtailadmin/shared/header.html" with title=title_trans %}
{% if content.information_text %}
{{ content.information_text }}
{% endif %} {% if nav %}

Contents

{% endif %}
{% if content.sections %} {% for block in content.sections %} {% if block.block_type == 'heading' %} {% else %} {% include_block block %} {% endif %} {% endfor %} {% else %}

An editor guide has not been created yet. Add one in Settings > Manage Editor Guide

{% endif %}
{% endblock %}