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

{% trans "Create New Application" %}

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

{% trans "Back to List" %}

{% trans "Application Information" %}

{% csrf_token %} {# Split form into two columns for better horizontal use #}
{% for field in form %}
{{ field|as_crispy_field }}
{% endfor %}

{% endblock %}