show team backups in team shift lists
This commit is contained in:
parent
c94074ccd7
commit
05d633b826
|
@ -7,6 +7,9 @@
|
|||
<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): {%for member in shift.teambackup_set.all%}{{member.name}}, {%endfor%}</strong>
|
||||
{% 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>
|
||||
|
|
|
@ -8,6 +8,9 @@
|
|||
<em>{{ shift.description|linebreaksbr }}</em>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if shift.teambackup_set.all.count %}<br>
|
||||
<strong>Backup Teammitglied(er): {%for member in shift.teambackup_set.all%}{{member.name}}, {%endfor%}</strong>
|
||||
{% endif %}
|
||||
{% if shift.shiftregistration_set.all %}
|
||||
<h5 class="subtitle">Helfer*innen</h5>
|
||||
<div class="columns is-multiline">
|
||||
|
|
Loading…
Reference in New Issue