author | nishanth |
Wed, 21 Apr 2010 19:35:22 +0530 | |
changeset 35 | f64c68963d54 |
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 %}