{% extends "base.html" %}{% block title %}{{ title }} · UAS Smart{% endblock %} {% block content %}

Bearbeitung

{{ title }}

{% if form_intro %}
Hinweis{{ form_intro }}
{% endif %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% for field in form %}
{{ field }}{% if field.help_text %}{{ field.help_text }}{% endif %}{% for error in field.errors %}{{ error }}{% endfor %}
{% endfor %}
{% endblock %}