{% extends "base.html" %} {% block title %}Schichtplan {{ year }}-{{ '%02d'|format(month) }}{% endblock %} {% block heading %}Schichtplan — {{ ['','Januar','Februar','März','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'][month] }} {{ year }}{% endblock %} {% block topbar_actions %} {% set prev_y = year if month > 1 else year - 1 %} {% set prev_m = month - 1 if month > 1 else 12 %} {% set next_y = year if month < 12 else year + 1 %} {% set next_m = month + 1 if month < 12 else 1 %} ← {{ prev_m }}/{{ prev_y }} {{ next_m }}/{{ next_y }} → {% endblock %} {% block content %}
{% endblock %}