33 lines
849 B
HTML
33 lines
849 B
HTML
{% extends "helper_base.html" %}
|
|
|
|
{% block title %}Freie Schichten{% endblock %}
|
|
{% block content %}
|
|
{% if current_shift %}
|
|
<h3 class="title">Aktuelle Schicht</h3>
|
|
<div class="columns">
|
|
{% include "partials/shift_listitem.html" with shift=current_shift registered=True %}
|
|
</div>
|
|
{% endif %}
|
|
{% if my_shifts %}
|
|
<h3 class="title">Meine Schichten</h3>
|
|
<div class="columns is-multiline">
|
|
{% for shift in my_shifts %}
|
|
{% include "partials/shift_listitem.html" with registered=True %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
<hr/>
|
|
{% if free_shifts %}
|
|
<h3 class="title">Freie Schichten</h3>
|
|
<div class="columns is-multiline">
|
|
{% for shift in free_shifts %}
|
|
{% include "partials/shift_listitem.html" %}
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<div class="notification">
|
|
Alle Schichten sind voll. Schau später noch mal vorbei.
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|