30 lines
1.0 KiB
HTML
30 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% load shift_extras %}
|
|
|
|
{% block title %}{{ room.name }}{% endblock %}
|
|
|
|
{% block everything %}
|
|
<section class="section">
|
|
<div class="container">
|
|
<h3 class="title" style="background:var(--background);margin:0 -1rem;padding:1rem;position:sticky;top:0;">Helfis für {{ room.name }}</h3>
|
|
<table class="table">
|
|
<thead style="background:inherit;position:sticky;top:4rem;">
|
|
<tr>
|
|
<th>Startzeit</th>
|
|
<th>Helfis</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for shift in shifts %}
|
|
<tr>
|
|
<td>{{ shift.start_at }}{% with shift.start_at|night_from_to as night %}{% if night %} ({{ night }}){% endif %}{% endwith %}</td>
|
|
<td>{% for reg in shift.valid_registrations.all %}{{ reg.helper.name }}{% if not forloop.last %}, {% endif %}{% endfor %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|