{% extends 'base.html' %} {% block title %}{{ title }}{% endblock %} {% block content %}
{{ title }}
{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %}{{ field.help_text }}{% endif %} {% if field.errors %}
{{ field.errors|join:", " }}
{% endif %}
{% endfor %} Cancel
{% endblock %}