{% if component.as_pdf %}{% else %}
{{ component.title }}
{% if component.caption.items %}
Legenda
{% for color, description in component.caption.items() %}
{{ description }}
{% endfor %}
{% endif %}
{% for month, calendar, details, visible in component.calendars %}
{% for line in calendar %} {% if loop.first %} {% for item in line %} {% endfor %} {% else %} {% for item in line %} {% endfor %} {% endif %} {% endfor %}
{{ month }}
{{ item }}
{{ item.0 }}
{% for description, days in details.items() %}
{{ description }}: {% for day in days %} {% if loop.first or loop.last %} {% if loop.last and not loop.first %} - {% endif %} {{ day }} {% endif %} {% endfor %}
{% endfor %}
{% endfor %}
{% if component.compact %}
{% endif %}
{% endif %}