Last change
on this file was
2b31097,
checked in by Alex Dehnert <adehnert@…>, 11 years ago
|
WIP: gather info needed for RFPs
|
-
Property mode set to
100644
|
File size:
745 bytes
|
Line | |
---|
1 | {% extends "base.html" %} |
---|
2 | |
---|
3 | {% block title %}Reimbursement Request » Details{% endblock %} |
---|
4 | {% block content %} |
---|
5 | |
---|
6 | <h2>Reimbursement Request: Step 2: Details</h2> |
---|
7 | |
---|
8 | <form method="post" action=""> |
---|
9 | <table class='pretty-table'> |
---|
10 | <tr class='sect-head'> |
---|
11 | <th colspan='2'>You are requesting a reimbursement from:</th> |
---|
12 | </tr> |
---|
13 | <tr> |
---|
14 | <th>Term</th> |
---|
15 | <td>{{term}}</td> |
---|
16 | </tr> |
---|
17 | <tr> |
---|
18 | <th>Committee</th> |
---|
19 | <td>{{comm}}</td> |
---|
20 | </tr> |
---|
21 | <tr> |
---|
22 | <th>Recipient type</th> |
---|
23 | <td>{{request.get_recipient_type_display}}</td> |
---|
24 | </tr> |
---|
25 | |
---|
26 | <tr class='sect-head'> |
---|
27 | <th colspan='2'>Request details:</th> |
---|
28 | </tr> |
---|
29 | {{ form.as_table }} |
---|
30 | {% csrf_token %} |
---|
31 | <tr><th colspan='2'><input type='submit' value='Request Reimbursement' /></th></tr> |
---|
32 | </table> |
---|
33 | </form> |
---|
34 | |
---|
35 | {% endblock %} |
---|
Note: See
TracBrowser
for help on using the repository browser.