{% extends "helper_base.html" %} {% block title %}Danke :){% endblock %} {% block content %} {% if party_info %} {% autoescape off %} {{ party_info }} {% endautoescape %}
{% endif %}
Bitte teil uns hierĂ¼ber mit, ob du zum Helfifest kommst. Vergiss nicht, deine Angaben mit dem Speichern-Button unten abzuschicken.
{% csrf_token %} {% for field in form %}
{% if field.widget_type == 'checkbox' %}
{% elif field.widget_type == 'radioselect' %}
{% for radio in field %} {% if radio.choice_label|cut:"-" != "" %} {% endif %} {% endfor %}
{% else %}
{{ field }}
{% endif %} {% for error in field.errors %}

{{ error }}

{% endfor %} {% if field.help_text %}

{{ field.help_text }}

{% endif %}
{% endfor %}
{% endblock %}