{% extends "django_program/pretalx/base.html" %} {% block title %}Travel Grant Status{% endblock %} {% block extra_head %} {% endblock %} {% block content %} Back to programs {% if grant %}
{{ grant.get_status_display }}
Applied: {{ grant.created_at|date:"M j, Y" }} {% if grant.reviewed_at %} Last updated: {{ grant.reviewed_at|date:"M j, Y" }} {% endif %}
Request Type {{ grant.get_request_type_display }}
Requested Amount ${{ grant.requested_amount }}
Traveling From {{ grant.travel_from }}
Application Type {{ grant.get_application_type_display }}
{% if grant.status == "info_needed" %}

The review committee has requested additional information about your application. Please review the messages below and provide the requested details.

{% endif %} {% if grant.status == "offered" or grant.status == "accepted" or grant.status == "disbursed" %}
{% if grant.status == "offered" %}Grant Offer{% else %}Accepted Grant{% endif %}
{% if grant.approved_amount is not None %}
Approved Amount ${{ grant.approved_amount }}
{% endif %} {% if grant.promo_code %}
Ticket Promo Code
{{ grant.promo_code }}
{% endif %}
{% endif %} {% if grant.status == "disbursed" %}
Payment Disbursed
Amount Sent ${{ grant.disbursed_amount }}
{% if grant.disbursed_at %}
Disbursed On {{ grant.disbursed_at|date:"M j, Y" }}
{% endif %}
{% endif %}
{% if grant.show_accept_button %}
{% csrf_token %}
{% endif %} {% if grant.show_decline_button %}
{% csrf_token %}
{% endif %} {% if grant.show_provide_info_button %} Provide Information {% endif %} {% if grant.show_edit_button %} Edit Application {% endif %} {% if grant.show_withdraw_button %}
{% csrf_token %}
{% endif %}
{% if grant.status == "accepted" and grant.approved_amount %}
Upload Receipts Payment Information
{% endif %}
Application Details
Request Type {{ grant.get_request_type_display }}
Application Type {{ grant.get_application_type_display }}
Traveling From {{ grant.travel_from }}
International {% if grant.international %}Yes{% else %}No{% endif %}
{% if grant.first_time is not None %}
First Time Attending {% if grant.first_time %}Yes{% else %}No{% endif %}
{% endif %} {% if grant.experience_level %}
Experience Level {{ grant.get_experience_level_display }}
{% endif %} {% if grant.days_attending %}
Days Attending {{ grant.days_attending }}
{% endif %}
{% if grant.travel_plans_airfare_amount or grant.travel_plans_lodging_amount %}
Travel Expense Breakdown {% if grant.travel_plans_airfare_amount %} {% endif %} {% if grant.travel_plans_lodging_amount %} {% endif %}
Expense Description Amount
Airfare {{ grant.travel_plans_airfare_description|default:"--" }} ${{ grant.travel_plans_airfare_amount }}
Lodging {{ grant.travel_plans_lodging_description|default:"--" }} ${{ grant.travel_plans_lodging_amount }}
Total Estimated Total ${{ grant.travel_plans_total }}
{% endif %} {% if grant.sharing_expenses %}
Sharing Expenses Yes
{% if grant.traveling_with %}
Traveling With {{ grant.traveling_with }}
{% endif %} {% endif %}
{% if grant.occupation %}
Occupation {{ grant.occupation }}
{% endif %} {% if grant.involvement %}
Community Involvement {{ grant.involvement|linebreaksbr }}
{% endif %}
Reason for Applying {{ grant.reason|linebreaksbr }}
Messages {% if grant_messages %}({{ grant_messages|length }}){% endif %}
{% if grant_messages %} {% else %}
No messages yet.
{% endif %} {% if grant.status != "withdrawn" and grant.status != "declined" %}
{% csrf_token %} {{ message_form.message }}
{% endif %}
{% else %}

You haven't applied for a travel grant yet.

Travel grants provide financial assistance for conference attendees who need help covering the costs of travel, lodging, or registration.

Apply for a Travel Grant
{% endif %} {% endblock %}