{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Create Application" %} - {{ block.super }}{% endblock %} {% block content %}

{% trans "Create New Application" %}

{% trans "Application Information" %}

{% if form.non_field_errors %} {% endif %}
{% csrf_token %}
{% for field in form %} {% if field.name != 'person' %}
{{ field }} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endif %} {% endfor %}
{% for error in form.person.errors %}
{{ error }}
{% endfor %}
{% trans "Cancel" %}
{% endblock %}