source: remit/remit_templates/vouchers/ReimbursementRequest_review.html @ dcaa9c0

client
Last change on this file since dcaa9c0 was 7416c7e, checked in by Alex Dehnert <adehnert@…>, 15 years ago

Clarify that the review page is a success page

  • Property mode set to 100644
File size: 1.6 KB
Line 
1{% extends "base.html" %}
2{% load misc %}
3
4{% block title %}Review reimbursement request for "{{ rr.name }}"{% endblock %}
5{% block content %}
6
7<h2>Review reimbursement request: {{rr.name}}</h2>
8
9<p>The following request has been stored in our database:</p>
10
11<table class='pretty-table reimbursement-request'>
12<tr>
13    <th>Short description</th>
14    <td>{{rr.name}}</td>
15</tr>
16<tr>
17    <th>Long description</th>
18    <td>{{rr.description}}</td>
19</tr>
20<tr>
21    <th>Amount</th>
22    <td>${{rr.amount}}</td>
23</tr>
24<tr>
25    <th>Term</th>
26    <td>{{rr.budget_term}}</td>
27</tr>
28<tr>
29    <th>Budget area</th>
30    <td>{{rr.budget_area.pathstr}}</td>
31</tr>
32<tr>
33    <th>Expense area</th>
34    <td>{{rr.expense_area.pathstr}}</td>
35</tr>
36<tr>
37    <th>Submitter</th>
38    <td>{{rr.submitter}}</td>
39</tr>
40<tr>
41    <th>Check recipient</th>
42    <td>
43        <p>{{rr.check_to_first_name}} {{ rr.check_to_last_name }} (email: {{rr.check_to_email}})</p>
44        <p>{{rr.check_to_addr}}</p>
45    </td>
46</tr>
47<tr>
48    <th>Request Time</th>
49    <td>{{rr.request_time}}</td>
50</tr>
51<tr>
52    <th>Approval Status (Time)</th>
53    <td>{{ rr.approval_status|approval_status }} ({{ rr.approval_time }})</td>
54</tr>
55<tr>
56    <th>Printing Time</th>
57    <td>{{rr.printing_time}}</td>
58</tr>
59</table>
60
61{% if approve_form %}
62<h3>Request Approval</h3>
63{% if approve_message %}
64<p>{{ approve_message }}</p>
65{% else %}
66<form method="post" action="">
67<table class='pretty-table'>
68{{ approve_form.as_table }}
69
70<tr>
71    <th colspan='2'><input type="submit" name="approve" value="Approve" /></td>
72</tr>
73</table>
74</form>
75{% endif %}
76{% endif %}
77
78{% endblock %}
Note: See TracBrowser for help on using the repository browser.