{% set days = ["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"] %}
<div class="container">
<table class="table table-striped">
<thead>
<tr>
{% for day in days %}
<th>{{ day }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
<tr id="event_start">
{% for day in days %}
<td name="{{ day }}">
</td>
{% endfor %}
</tr>
<tr id="event_end">
{% for day in days %}
<td name="{{ day }}">
</td>
{% endfor %}
</tr>
</tbody>
</table>
</div>