forked from rc/aircox
33 lines
891 B
HTML
33 lines
891 B
HTML
{% extends "aircox/cms/website.html" %}
|
|
|
|
{% block header %}
|
|
{% spaceless %}
|
|
<header>
|
|
<a href="{% url exp.name key="render" year=prev_month.year month=prev_month.month %}"
|
|
onclick="return Section.load_event(event);"><</a>
|
|
|
|
<h3>{{ this_month|date:'F Y' }}</h3>
|
|
|
|
<a href="{% url exp.name key="render" year=next_month.year month=next_month.month %}"
|
|
onclick="return Section.load_event(event);">></a>
|
|
</header>
|
|
{% endspaceless %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% spaceless %}
|
|
<div class="content">
|
|
<div first_weekday="{{ first_weekday }}"> </div>
|
|
{% for day, url in days %}
|
|
{% if day == today %}
|
|
<a href="{{ url }}" weekday="{{ day.weekday }}" class="today">{{ day.day }}</a>
|
|
{% else %}
|
|
<a href="{{ url }}" weekday="{{ day.weekday }}">{{ day.day }}</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endspaceless %}
|
|
{% endblock %}
|
|
|
|
|