{% extends "django_program/manage/base.html" %} {% block title %}Review Travel Grant{% endblock %} {% block breadcrumb %} {% endblock %} {% block page_title %}

Review Travel Grant: {{ grant.user.get_full_name|default:grant.user.username }}

{% endblock %} {% block content %}
Applicant
{{ grant.user.get_full_name|default:grant.user.username }}
Email
{{ grant.user.email|default:"--" }}
Request Type
{{ grant.get_request_type_display }}
Application Type
{{ grant.get_application_type_display }}
Traveling From
{{ grant.travel_from }}{% if grant.international %} intl{% endif %}
First Time Attending
{% if grant.first_time is None %}--{% elif grant.first_time %}Yes{% else %}No{% endif %}
Requested Amount
${{ grant.requested_amount }}
Current Status
{% if grant.status == "submitted" %} Submitted {% elif grant.status == "info_needed" %} Info Needed {% elif grant.status == "offered" %} Offered {% elif grant.status == "accepted" %} Accepted {% elif grant.status == "rejected" %} Rejected {% elif grant.status == "declined" %} Declined {% elif grant.status == "withdrawn" %} Withdrawn {% elif grant.status == "need_more" %} Requesting More {% elif grant.status == "disbursed" %} Disbursed {% endif %}
Applied
{{ grant.created_at|date:"N j, Y, P" }}
{% if grant.travel_plans_airfare_amount or grant.travel_plans_lodging_amount or grant.travel_plans_transit_amount or grant.travel_plans_visa_amount %}

Travel Plan Breakdown

{% if grant.travel_plans_airfare_amount %} {% endif %} {% if grant.travel_plans_lodging_amount %} {% endif %} {% if grant.travel_plans_transit_amount %} {% endif %} {% if grant.travel_plans_visa_amount %} {% endif %}
CategoryDescriptionAmount
Airfare{{ grant.travel_plans_airfare_description|default:"--" }}${{ grant.travel_plans_airfare_amount }}
Lodging{{ grant.travel_plans_lodging_description|default:"--" }}${{ grant.travel_plans_lodging_amount }}
Local Transit{{ grant.travel_plans_transit_description|default:"--" }}${{ grant.travel_plans_transit_amount }}
Visa{{ grant.travel_plans_visa_description|default:"--" }}${{ grant.travel_plans_visa_amount }}
Travel Plans Total${{ grant.travel_plans_total }}
{% endif %}

Applicant Profile

Experience Level
{{ grant.get_experience_level_display|default:"--" }}
Days Attending
{{ grant.days_attending|default:"--" }}
{% if grant.sharing_expenses %}
Sharing Expenses
Yes{% if grant.traveling_with %} (with {{ grant.traveling_with }}){% endif %}
{% endif %}
{% if grant.occupation %}

Occupation

{{ grant.occupation|linebreaks }}
{% endif %} {% if grant.involvement %}

Community Involvement

{{ grant.involvement|linebreaks }}
{% endif %}

Reason

{{ grant.reason|linebreaks }}
{% if has_previous_review %}

Previous Review

Reviewed By
{{ grant.reviewed_by.get_full_name|default:grant.reviewed_by.username }}
Reviewed At
{{ grant.reviewed_at|date:"N j, Y, P" }}
{% if grant.approved_amount %}
Approved Amount
${{ grant.approved_amount }}
{% endif %} {% if grant.promo_code %}
Promo Code
{{ grant.promo_code }}
{% endif %}
{% endif %}

Messages ({{ grant_messages|length }})

{% if grant_messages %}
{% for msg in grant_messages %}
{% if msg.user == grant.user %}{{ grant.user.get_full_name|default:grant.user.username }} (applicant){% else %}{{ msg.user.get_full_name|default:msg.user.username }}{% endif %} {% if not msg.visible %}Private{% endif %} {{ msg.created_at|date:"N j, Y, P" }}

{{ msg.message }}

{% endfor %}
{% else %}

No messages yet.

{% endif %}

Send Message

{% csrf_token %}
{{ message_form.message }}
{% if grant.receipts.all %}

Receipts ({{ grant.receipts.count }})

{% for receipt in grant.receipts.all %} {% endfor %}
TypeDateAmountStatusActions
{{ receipt.get_receipt_type_display }} {{ receipt.date|date:"M j, Y" }} ${{ receipt.amount }} {% if receipt.approved %}Approved {% elif receipt.flagged %}Flagged {% else %}Pending{% endif %} Review
{% endif %} {% if grant.payment_info %}

Payment Info

Payment Method
{{ grant.payment_info.get_payment_method_display }}
Legal Name
{{ grant.payment_info.legal_name }}
{% endif %} {% if grant.status == "accepted" %}
Disbursement
{% csrf_token %}
{% endif %} {% if grant.status == "disbursed" %}
Disbursement Complete
Amount ${{ grant.disbursed_amount }}
Date {{ grant.disbursed_at|date:"M j, Y g:i A" }}
Processed By {{ grant.disbursed_by }}
{% endif %}

Review

{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% if field.errors %}
    {% for error in field.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% endfor %}
Cancel
{% endblock %}