{% extends "team_base.html" %} {% block title %}Schichtübersicht{% endblock %} {% block content %} {% if running_shifts %}

Laufende Schichten

{% for shift in running_shifts %} {% include "partials/shift_list_item.html" %} {% endfor %}

{% endif %}

Nächste Schichten pro Raum

{% for shift in next_shifts %}
{{ shift.room.name }}
{% include "partials/shift_box.html" %}
{% endfor %}
{% endblock %}