blob: d9ce767a76d16c97ed50047349723168ca2bb499 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{% extends "base.html" %}
{% block title %}Application form {% endblock %}
{% block content %}
Choose the options as per your preference
<h3> {{user.first_name}} {{user.last_name}} {{user.user_name}}</h3>
<h3> {{subject}} </h3>
<form action="/allotter/save" method="post">
{% csrf_token %}
{% for option in options %}
<input name="option" type="radio" value="{{option}}" />{{option.opt_name}}<br/>
{% endfor %}
<input type="submit" name="save" value="Save" />
</form>
<form action="/allotter/quit/" method="post">
{% csrf_token %}
<input type="submit" name="quit" value="Quit Allotment" />
</form>
{% endblock content %}
|