source: treasury/templates/vouchers/ReimbursementRequest_review.html @ 6b8d891

client
Last change on this file since 6b8d891 was 6b8d891, checked in by Alex Dehnert <adehnert@…>, 16 years ago

Reimbursement submission workflow mostly works

  • Property mode set to 100644
File size: 981 bytes
Line 
1{% extends "base.html" %}
2
3{% block title %}Review reimbursement request for "{{ rr.name }}"{% endblock %}
4{% block content %}
5
6<h2>Review reimbursement request: {{rr.name}}</h2>
7
8<table>
9<tr>
10    <th>Short description</th>
11    <td>{{rr.name}}</td>
12</tr>
13<tr>
14    <th>Long description</th>
15    <td>{{rr.description}}</td>
16</tr>
17<tr>
18    <th>Amount</th>
19    <td>${{rr.amount}}</td>
20</tr>
21<tr>
22    <th>Term</th>
23    <td>{{rr.budget_term}}</td>
24</tr>
25<tr>
26    <th>Budget area</th>
27    <td>{{rr.budget_area}}</td>
28</tr>
29<tr>
30    <th>Submitter</th>
31    <td>{{rr.submitter}}</td>
32</tr>
33<tr>
34    <th>Check recipient</th>
35    <td>
36        <p>{{rr.check_to_name}} (email: {{rr.check_to_email}})</p>
37        <p>{{rr.check_to_addr}}</p>
38    </td>
39</tr>
40<tr>
41    <th>Request Time</th>
42    <td>{{rr.request_time}}</td>
43</tr>
44<tr>
45    <th>Approval Time</th>
46    <td>{{rr.approval_time}}</td>
47</tr>
48<tr>
49    <th>Printing Time</th>
50    <td>{{rr.printing_time}}</td>
51</tr>
52</table>
53
54{% endblock %}
Note: See TracBrowser for help on using the repository browser.