shiftregister/shiftregister/signage/templates/team_dashboard.html

33 lines
1.1 KiB
HTML

{% extends "autoscroll.html" %}
{% block everything %}
<section class="section">
<div class="container">
{% include "notifications.html" %}
<h3 class="title" style="background:var(--background);margin:0 -1rem;padding:1rem;position:sticky;top:0;">Teamschichten für {{ today|date:"l, d. F Y" }}</h3>
<table class="table">
<thead style="background:inherit;position:sticky;top:4rem;">
<tr>
<th>Schicht</th>
<th>Startzeit</th>
<th>Teammitglied(er)</th>
</tr>
</thead>
<tbody>
{% for shift in team_shifts %}
<tr>
<td>{{ shift.room.name }}</td>
<td>{{ shift.start_at }}</td>
<td>{% for fa in shift.fallbackassignment_set.all %}{% if not fa.was_full %}{{ fa.team_member.name }}{% if not forloop.last %}, {% endif %}{% endif %}{% endfor %}</td>
</tr>
{% empty %}
<tr>
<td colspan="3">:)</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</section>
{% endblock %}