we shall not track db files since they are changed often. we shall maintain a .bak file which is db file and rename it appropriately before we start using the app.
{% 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 %}