{% extends 'vote/base.html' %} {% load crispy_forms_filters %} {% load static %} {% block content %}
{% csrf_token %}
{% if application_id %}

Edit Application

{% else %}

New Application

{% endif %}

{{ form|as_crispy_errors }}
Display Name
{{ form.display_name|as_crispy_field:"bootstrap4" }}
{% if with_email %}
Contact E-Mail AddressOptional
The e-mail address will not be visible to voters.
{{ form.email|as_crispy_field:"bootstrap4" }}
{% endif %} {% if with_description %}
Application InfoOptional
This information is visible to voters! Add a short description of the applicant.
Add a photo of the applicant. {{ form.avatar }}
{% endif %}
{% endblock %} {% block footer_scripts %} {% endblock %}