{% extends "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 %} {% if next_shifts %}

Nächste Schichten

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

Nächste Schichten pro Raum

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