source: remit/remit_templates/vouchers/submit.html @ 42b287c

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

Improve the look a bit more

  • Property mode set to 100644
File size: 637 bytes
Line 
1{% extends "base.html" %}
2
3{% block title %}Reimbursement Request &raquo; 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<tr><th colspan='2'><input type='submit' value='Request Reimbursement' /></th></tr>
27</table>
28</form>
29
30{% endblock %}
Note: See TracBrowser for help on using the repository browser.