author | nishanth |
Tue, 29 Jun 2010 11:49:04 +0530 | |
changeset 61 | 3b8b0ce51566 |
parent 36 | 9e0d6aecf269 |
permissions | -rw-r--r-- |
8 | 1 |
{% extends "base.html" %} |
2 |
{% block content %} |
|
3 |
{% if success %} |
|
36
9e0d6aecf269
added "return to admin page" link in open_feedback page
nishanth
parents:
8
diff
changeset
|
4 |
The feedback for day {{day}} of {{event.title}} has been opened.<br /> |
9e0d6aecf269
added "return to admin page" link in open_feedback page
nishanth
parents:
8
diff
changeset
|
5 |
<a href="/event/admin/{{admin_key}}">Return to admin page</a> |
8 | 6 |
{% else %} |
7 |
Select the day of workshop {{event.title}} to start accepting feedbacks. |
|
8 |
<form action="" method="post"> |
|
9 |
Day:<br /> |
|
10 |
<select name="day"> |
|
11 |
{% for day in days %} |
|
12 |
<option value="{{day}}">Day {{day}}</option> |
|
13 |
{% endfor %} |
|
14 |
</select> |
|
15 |
<input value="Open" type="submit"> |
|
16 |
</form> |
|
17 |
{% endif %} |
|
18 |
{% endblock %} |