{% extends 'base.html' %} {% load staticfiles %} {% load i18n %} {% block head %} {% endblock head %} {% block main %}
{% csrf_token %} {{ form.status }} {% for field in form.visible_fields %}
{% if field.label == 'Content' %} {% include 'markdown_editor.html' with textarea='id_content' %} {% endif %} {{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %} {% endfor %}
{% endfor %}
{% trans 'Cancel' %}
{% endblock main %}