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

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

Improve the look a bit more

  • Property mode set to 100644
File size: 1.1 KB
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 class='pretty-table reimbursement-request'>
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.pathstr}}</td>
28</tr>
29<tr>
30    <th>Expense area</th>
31    <td>{{rr.expense_area.pathstr}}</td>
32</tr>
33<tr>
34    <th>Submitter</th>
35    <td>{{rr.submitter}}</td>
36</tr>
37<tr>
38    <th>Check recipient</th>
39    <td>
40        <p>{{rr.check_to_name}} (email: {{rr.check_to_email}})</p>
41        <p>{{rr.check_to_addr}}</p>
42    </td>
43</tr>
44<tr>
45    <th>Request Time</th>
46    <td>{{rr.request_time}}</td>
47</tr>
48<tr>
49    <th>Approval Time</th>
50    <td>{{rr.approval_time}}</td>
51</tr>
52<tr>
53    <th>Printing Time</th>
54    <td>{{rr.printing_time}}</td>
55</tr>
56</table>
57
58{% endblock %}
Note: See TracBrowser for help on using the repository browser.