You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
820 B
HTML
19 lines
820 B
HTML
<div class="box">
|
|
<div class="content">
|
|
{% if shift.deleted %}
|
|
<em>gelöscht</em><br>
|
|
{% endif %}
|
|
<strong>Ort:</strong> {{ shift.room.name }}<br>
|
|
<strong>Beginn:</strong> {{ shift.start_at }}<br>
|
|
<strong>Dauer:</strong> {{ shift.duration }}<br>
|
|
<strong>Belegung:</strong> {{ shift.shiftregistration_set.count }}/{{ shift.required_helpers|default:shift.room.required_helpers }}
|
|
{% if shift.teambackup_set.all.count %}
|
|
<br>
|
|
<strong>Backup-Teammitglied(er):</strong> {% for member in shift.teambackup_set.all %}{{ member.name }}{% if not forloop.last %}, {% endif %}{% endfor %}
|
|
{% endif %}
|
|
</div>
|
|
<div class="is-flex is-justify-content-end">
|
|
<a class="button is-info is-small" href="{% url 'team:shift' shift.id %}">Details</a>
|
|
</div>
|
|
</div>
|