shiftregister/shiftregister/app/templates/shiftlist.html

24 lines
734 B
HTML
Raw Normal View History

2022-04-13 18:28:45 +02:00
{% extends "helper_base.html" %}
{% block title %}Freie Schichten{% endblock %}
{% block content %}
{% if current_shift %}
<h2>Aktuelle Schicht</h2>
2022-04-20 18:39:33 +02:00
{{ current_shift.room.name }} {{ current_shift.start_at }}<a href="{% url 'shift' current_shift.id %}">Details</a>
{% endif %}
{% if my_shifts %}
<h2>Meine Schichten</h2>
<ul>
{% for reg in my_shifts %}
<li>{{ reg.shift.room.name }} {{ reg.shift.start_at }}<a href="{% url 'shift' reg.shift.id %}">Details</a></li>
{% endfor %}
</ul>
{% endif %}
<h2>Freie Schichten:</h2>
<ul>
{% for shift in free_shifts %}
<li>{{ shift.room.name }} {{ shift.start_at }}<a href="{% url 'shift' shift.id %}">Mithelfen</a></li>
{% endfor %}
</ul>
{% endblock %}