author | nishanth |
Wed, 21 Apr 2010 19:35:22 +0530 | |
changeset 35 | f64c68963d54 |
parent 8 | 182e4a773ef2 |
child 36 | 9e0d6aecf269 |
permissions | -rw-r--r-- |
8 | 1 |
{% extends "base.html" %} |
2 |
{% block content %} |
|
3 |
{% if success %} |
|
4 |
The feedback for day {{day}} of {{event.title}} has been opened.<br /> |
|
5 |
{% else %} |
|
6 |
Select the day of workshop {{event.title}} to start accepting feedbacks. |
|
7 |
<form action="" method="post"> |
|
8 |
Day:<br /> |
|
9 |
<select name="day"> |
|
10 |
{% for day in days %} |
|
11 |
<option value="{{day}}">Day {{day}}</option> |
|
12 |
{% endfor %} |
|
13 |
</select> |
|
14 |
<input value="Open" type="submit"> |
|
15 |
</form> |
|
16 |
{% endif %} |
|
17 |
{% endblock %} |