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

{% trans "Create New Application" %}

{% trans "Enter details to create a new application record." %}

{% trans "Application Information" %}

{% csrf_token %}
{% for field in form %}
{{ field }} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% for error in field.errors %}

{{ error }}

{% endfor %}
{% endfor %}
{% endblock %} {% block customJS %} {% endblock %}