{% extends "django_program/pretalx/base.html" %} {% block title %}Apply for Travel Grant{% endblock %} {% block extra_head %} {% endblock %} {% block content %} Back to Programs
{% if form.non_field_errors %} {% endif %}
{% csrf_token %} {# Hidden field — auto-filled by JS from expense totals #}
1 What are you requesting?
{{ form.request_type.label }}
{% for radio in form.request_type %} {% endfor %}
{% if form.request_type.errors %} {% endif %}
2 Conference Attendance
{{ form.application_type }} {% if form.application_type.help_text %}

{{ form.application_type.help_text }}

{% endif %} {% if form.application_type.errors %} {% endif %}
{{ form.days_attending.label }}
{% for checkbox in form.days_attending %} {% endfor %}
{% if form.days_attending.errors %} {% endif %}
3 Travel Details
{{ form.travel_from }} {% if form.travel_from.help_text %}

{{ form.travel_from.help_text }}

{% endif %} {% if form.travel_from.errors %} {% endif %}
{% if form.international.help_text %}

{{ form.international.help_text }}

{% endif %} {% if form.international.errors %} {% endif %}
4 Travel Expenses

Provide an itemized breakdown of your travel costs. Include descriptions so reviewers understand your plans. Conference registration is complimentary for all grant recipients.

Expense Description Amount (USD)
Airfare {{ form.travel_plans_airfare_description }} {% if form.travel_plans_airfare_description.errors %} {% endif %}
{{ form.travel_plans_airfare_amount }}
{% if form.travel_plans_airfare_amount.errors %} {% endif %}
Lodging {{ form.travel_plans_lodging_description }} {% if form.travel_plans_lodging_description.errors %} {% endif %}
{{ form.travel_plans_lodging_amount }}
{% if form.travel_plans_lodging_amount.errors %} {% endif %}
Registration Conference registration Complimentary
Total Estimated Grand Total $0.00
5 Shared Expenses
{% if form.sharing_expenses.help_text %}

{{ form.sharing_expenses.help_text }}

{% endif %} {% if form.sharing_expenses.errors %} {% endif %}
6 About You
{{ form.first_time }} {% if form.first_time.errors %} {% endif %}
{{ form.experience_level }} {% if form.experience_level.errors %} {% endif %}
{{ form.occupation }} {% if form.occupation.help_text %}

{{ form.occupation.help_text }}

{% endif %} {% if form.occupation.errors %} {% endif %}
{{ form.involvement }} {% if form.involvement.help_text %}

{{ form.involvement.help_text }}

{% endif %} {% if form.involvement.errors %} {% endif %}
{{ form.reason }} {% if form.reason.help_text %}

{{ form.reason.help_text }}

{% endif %} {% if form.reason.errors %} {% endif %}
{% if form.requested_amount.errors %} {% endif %}
Cancel All fields with * are required
{% endblock %} {% block extra_js %} {% endblock %}