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

{% trans "Create New Candidate" %}

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

{% trans "Candidate Information" %}

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

{% endblock %}