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