{% extends 'main/pagetemplate.html' %} {% load static %} {% block additional_css %} {% endblock %} {% block pagetitle %} Календарь {% endblock %} {% block content %}

Календарь

{{year}}

{% for month in month_data %} {% if month.number != calendar_data.leap_month or is_leap_year %} {% include 'faerun_calendar/month.html' with month=month month_days=month_days %} {% endif %} {% endfor %}
{% endblock %}