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