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

Review Receipt

{% endblock %} {% block content %}
Applicant
{{ receipt.grant.user.get_full_name|default:receipt.grant.user.username }}
Receipt Type
{{ receipt.get_receipt_type_display }}
Amount
${{ receipt.amount }}
Date
{{ receipt.date|date:"M j, Y" }}
{% if receipt.description %}
Description
{{ receipt.description }}
{% endif %}
Status
{% if receipt.approved %} Approved {% elif receipt.flagged %} Flagged {% else %} Pending {% endif %}
Uploaded
{{ receipt.created_at|date:"N j, Y, P" }}

Receipt File

{% if receipt.receipt_file %}

Open File

{% if receipt.receipt_file.name|lower|slice:"-4:" == ".pdf" %}

PDF file — click to open in a new tab.

{% else %} Receipt {% endif %} {% endif %}
{% if not receipt.approved and not receipt.flagged %}

Actions

{% csrf_token %}
{% csrf_token %}
{{ flag_form.reason }}
{% endif %}
Next Receipt Back to Grants
{% endblock %}