{% extends "helper_base.html" %} {% block title %}Freie Schichten{% endblock %} {% block content %} {% if current_shift %}

Aktuelle Schicht

{% include "partials/shift_listitem.html" with shift=current_shift registered=True %}
{% endif %} {% if my_shifts %}

Meine Schichten

{% for shift in my_shifts %} {% include "partials/shift_listitem.html" with registered=True %} {% endfor %}

{% endif %} {% if free_shifts %}

Freie Schichten

{% for shift in free_shifts %} {% include "partials/shift_listitem.html" %} {% endfor %}
{% else %}
Alle Schichten sind voll. Schau später noch mal vorbei.
{% endif %} {% endblock %}