templates/open_feedback.html
author nishanth
Mon, 12 Apr 2010 13:49:00 +0530
changeset 14 cd6911eaac2c
child 38 b63b78017225
permissions -rw-r--r--
moved templates into templates directory and added user in context .
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     1
{% extends "base.html" %}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     2
{% block content %}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     3
	{% if success %}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     4
		The feedback for day {{day}} of {{event.title}} has been opened.<br />
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     5
		<a href="/reg/event/view/{{event.key}}">Click here</a> to return to the event page.
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     6
	{% else %}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     7
		Select the day for workshop {{event.title}} to start accepting feedbacks.
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     8
		<form action="" method="post">
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     9
		Day:<br />
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    10
		<select name="day">
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    11
		{% for day in days %}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    12
			<option value="{{day}}">Day {{day}}</option>
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    13
		{% endfor %}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    14
		</select>
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    15
		<input value="Open" type="submit">
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    16
		</form>
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    17
	{% endif %}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    18
{% endblock %}