{% extends 'base.html.j2' %} {% set active_page = "calendar" %} {% block content %}
{#
{% if img_credits %}Foto: {{ img_credits }}{% endif %}
#}
{% set prevmonth = ((month - 1 + 12 - 1) % 12) + 1 %} {% set nextmonth = ((month + 1 - 1) % 12) + 1 %}

{{ month | to_month | capitalize }}

{% for col in columns %}
{% for birthdate in col %}

{{ birthdate.day }}. {{ birthdate.bucket | join(", ") }} {% if birthdate.day == today and birthdate.bucket %}🎉{% endif %}

{% endfor %}
{% endfor %}
{% endblock %}