{% extends "wagtailadmin/base.html" %} {% block titletag %} {{ current_year }} Журнал {% endblock %} {% block extra_css %} {{ block.super }} {% endblock %} {% block content %} {% include "wagtailadmin/shared/header.html" with title="Журнал" icon="date" %} {% for day in days %}

{{ day }}

{% endfor %}
{% for title, month in calendar.three_months %}
{{ title }}
{% for weekday in WEEKDAYS %}
{{ weekday }}
{% endfor %}
{% for page, date, day, weekday in month %} {% if day > 0 %}
{% if page %} {{ day }} {% else %} {{ day }} {% endif %}
{% else %}
{% endif %} {% endfor %}
{% endfor %}
{% endblock %}