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

{% trans "Create New Participant" %}

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

{% trans "Participant Information" %}

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

{% endblock %}