templates/open_feedback.html
author nishanth
Fri, 16 Apr 2010 16:37:28 +0530
changeset 75 bda9ee536063
parent 44 7d748db0c7c3
permissions -rw-r--r--
changed the urls to /workshop/registration/.. from /reg/.. in all the templates

{% extends "base.html" %}
{% block content %}
	{% if success %}
		The feedback for day {{day}} of <a href="/workshop/registration/event/view/{{event.key}}">{{event.title}}</a> has been opened.<br />
	{% else %}
		Select the day of workshop <a href="/workshop/registration/event/view/{{event.key}}">{{event.title}}</a> to start accepting feedbacks.
		<form action="" method="post">
		Day:<br />
		<select name="day">
		{% for day in days %}
			<option value="{{day}}">Day {{day}}</option>
		{% endfor %}
		</select>
		<input value="Open" type="submit">
		</form>
	{% endif %}
{% endblock %}