{% for field in form %}
{% if field.name not in "cover,content" %}
{% endif %}
{% if field.errors %}
{{ field.errors }}
{% endif %}
{% if field.help_text %}
{{ field.help_text|safe }}
{% endif %}
{% endfor %}
{% with form.cover as field %}
{% block page-form-cover %}
{% spaceless %}
{% endspaceless %}
{% endblock %}
{% endwith %}