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

Travel Grants

Review and manage travel grant applications

{% endblock %} {% block content %} {% if grant_stats.total %}
{{ grant_stats.total }}
Total Applications
{{ grant_stats.pending }}
Submitted
{{ grant_stats.approved }}
Accepted
{{ grant_stats.rejected }}
Rejected
{{ grant_stats.disbursed }}
Disbursed
${{ grant_stats.total_requested }}
Total Requested
${{ grant_stats.total_approved }}
Total Approved
{% if current_status %} Clear filter {% endif %}
{% endif %} {% if grants %} {% for grant in grants %} {% endfor %}
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
{% include "django_program/manage/_pagination.html" %} {% else %}
{% if current_status %}

No travel grant applications with status "{{ current_status }}".

Show all

{% else %}

No travel grant applications yet.

{% endif %}
{% endif %} {% endblock %}