{% extends "assistant/base.html" %} {% block container %}
{% if form.is_bound and not form.is_valid %}
{% for field in form %} {% if field.errors %}

{{ field.name }}

    {% for error in field.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% endfor %}
{% endif %} {% csrf_token %}

This field support the markdown syntax

    {% for tag in tags %}
  • {{ tag.name }}
  • {% endfor %}
{% endblock %}