{% extends "base.html" %} {% load misc %} {% block title %}Review reimbursement request for "{{ rr.name }}"{% endblock %} {% block content %}
Request ID | {{rr.label}} | ||
---|---|---|---|
Short description | {{rr.name}} | ||
Long description | {{rr.description}} | ||
Amount | ${{rr.amount}} | ||
Term | {{rr.budget_term}} | ||
Budget area | {{rr.budget_area.pathstr}} | ||
Expense area | {{rr.expense_area.pathstr}} | ||
Submitter | {{rr.submitter}} | ||
Check recipient |
{{rr.check_to_first_name}} {{ rr.check_to_last_name }} (email: {{rr.check_to_email}}) {{rr.check_to_addr}} |
||
Documentation | {% if rr.documentation %}{{rr.documentation}} | {% else %}No documentation submitted | {% endif %}|
Request Time | {{rr.request_time}} | ||
Approval Status (Time) | {{ rr.approval_status|approval_status }} ({{ rr.approval_time }}) | ||
Voucher Processing Time | {%if rr.voucher%} {%if rr.voucher.process_time%}{{rr.voucher.process_time}} | {%else%}Not yet processed | {%endif%} {%else%}Not yet approved | {%endif%}
If you ordered online, you may wish to upload documentation instead of providing a physical copy.
{% endif %} {% if new %} {% include "vouchers/reimbursementrequest_instructions.fragment.html" %} {% endif %} {% if email_options %}{{ email_message }}
{% endif %}{{ approve_message }}
{% else %} {% if perms.vouchers.change_reimbursementrequest %}Optionally, change this request first.
{% endif %} {% endif %} {% endif %} {% endblock %}