2016-08-08 18:22:53 +00:00
|
|
|
{% extends 'schedule_base.html' %}
|
2016-08-04 21:03:39 +00:00
|
|
|
|
2016-08-08 18:22:53 +00:00
|
|
|
{% block schedule_content %}
|
2016-08-04 21:03:39 +00:00
|
|
|
|
2016-08-08 17:50:35 +00:00
|
|
|
<a href="{% url 'schedule:index' %}" class="btn btn-default" style="display: inline-block; padding: 5px;">
|
2016-08-04 21:03:39 +00:00
|
|
|
Overview
|
|
|
|
</a>
|
|
|
|
{% for day in days %}
|
|
|
|
{% with day.date|date:"m" as month_padded %}
|
|
|
|
{% with day.date|date:"d" as day_padded %}
|
2016-08-08 17:50:35 +00:00
|
|
|
<a href="{% url 'schedule:day' year=day.date.year month=month_padded day=day_padded %}" class="btn btn-default" style="display: inline-block; padding: 5px;">
|
2016-08-04 21:03:39 +00:00
|
|
|
{{ day.date|date:"l" }}
|
|
|
|
</a>
|
|
|
|
{% endwith %}
|
|
|
|
{% endwith %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
|
|
|
{% block program_content %}
|
2016-08-08 18:22:53 +00:00
|
|
|
{% endblock program_content %}
|
2016-08-04 21:03:39 +00:00
|
|
|
|
2016-08-08 18:22:53 +00:00
|
|
|
{% endblock schedule_content %}
|