client
Last change
on this file since f301a50 was
f301a50,
checked in by Alex Dehnert <adehnert@…>, 11 years ago
|
Add some csrf_token's
|
-
Property mode set to
100644
|
File size:
654 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 | |
---|
22 | <tr class='sect-head'> |
---|
23 | <th colspan='2'>Request details:</th> |
---|
24 | </tr> |
---|
25 | {{ form.as_table }} |
---|
26 | {% csrf_token %} |
---|
27 | <tr><th colspan='2'><input type='submit' value='Request Reimbursement' /></th></tr> |
---|
28 | </table> |
---|
29 | </form> |
---|
30 | |
---|
31 | {% endblock %} |
---|
Note: See
TracBrowser
for help on using the repository browser.