author | nishanth |
Tue, 20 Apr 2010 09:55:46 +0530 | |
changeset 11 | afc41af983e5 |
parent 8 | 182e4a773ef2 |
child 36 | 9e0d6aecf269 |
permissions | -rw-r--r-- |
{% extends "base.html" %} {% block content %} {% if success %} The feedback for day {{day}} of {{event.title}} has been opened.<br /> {% else %} Select the day of 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 %}