--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/open_feedback.html Mon Apr 12 13:49:00 2010 +0530
@@ -0,0 +1,18 @@
+{% extends "base.html" %}
+{% block content %}
+ {% if success %}
+ The feedback for day {{day}} of {{event.title}} has been opened.<br />
+ <a href="/reg/event/view/{{event.key}}">Click here</a> to return to the event page.
+ {% else %}
+ Select the day for workshop {{event.title}} 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 %}