{% extends "django_program/manage/base.html" %} {% block title %}Travel Grants{% endblock %} {% block page_title %}
Review and manage travel grant applications
{% endblock %} {% block content %} {% if grant_stats.total %}| Applicant | Type | Traveling From | Requested | Approved | Receipts | Status | Reviewer | Applied | Actions |
|---|---|---|---|---|---|---|---|---|---|
|
{{ grant.user.get_full_name|default:grant.user.username }}
{% if grant.user.email %} {{ grant.user.email }}{% endif %} |
{{ grant.get_application_type_display }} | {{ grant.travel_from }}{% if grant.international %} intl{% endif %} | ${{ grant.requested_amount }} | {% if grant.approved_amount is not None %}${{ grant.approved_amount }}{% else %}--{% endif %} | {% if grant.receipt_count is not None %}{{ grant.receipt_count }}{% else %}--{% endif %} | {% 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 %} |
{% if grant.reviewed_by %}
{{ grant.reviewed_by.get_full_name|default:grant.reviewed_by.username }}
{% if grant.reviewed_at %} {{ grant.reviewed_at|date:"N j" }}{% endif %} {% else %} -- {% endif %} |
{{ grant.created_at|date:"N j, Y" }} | Review |
No travel grant applications with status "{{ current_status }}".
{% else %}No travel grant applications yet.
{% endif %}