summaryrefslogtreecommitdiff
path: root/templates/slot/show.html
blob: 1777e310c127b8cad04aa43f60084bf923878b7d (plain)
1
2
3
4
5
6
<label for="future_slot">Free slot timings</label>
<select name="slot" id="future_slot">
{% for s in all_slots %}
    <option value="{{ s.id }}">{{ s }}</option>
{% endfor %}
</select>