open_feedback.html
changeset 12 f57b0a7f24d9
equal deleted inserted replaced
11:334550460bd7 12:f57b0a7f24d9
       
     1 {% extends "base.html" %}
       
     2 {% block content %}
       
     3 	{% if success %}
       
     4 		The feedback for day {{day}} of {{event.title}} has been opened.<br />
       
     5 		<a href="/reg/event/view/{{event.key}}">Click here</a> to return to the event page.
       
     6 	{% else %}
       
     7 		Select the day for 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 %}