source: remit/remit_templates/vouchers/select.html

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

Add some csrf_token's

  • Property mode set to 100644
File size: 417 bytes
Line 
1{% extends "base.html" %}
2
3{% block title %}Reimbursement Request &raquo; Select Term and Area{% endblock %}
4{% block content %}
5
6<h2>Reimbursement Request: Step 1: Select Term and Area</h2>
7
8{% include "vouchers/area_instructions.html" %}
9
10<form method="post" action="">
11<table>
12{% csrf_token %}
13{{ form.as_table }}
14<tr><td></td><td><input type='submit' value='Proceed' /></td></tr>
15</table>
16</form>
17
18{% endblock %}
Note: See TracBrowser for help on using the repository browser.