24 lines
1.3 KiB
HTML
24 lines
1.3 KiB
HTML
{% load shift_extras %}
|
|
|
|
<a href="{% url 'team:shift' shift.pk %}">
|
|
<div class="box">
|
|
<div class="content">
|
|
{% if shift.deleted %}
|
|
<em>gelöscht</em><br>
|
|
{% endif %}
|
|
<strong>Ort:</strong> <span class="{{ shift.event.calendar.needs_fallback|yesno:"is-underlined," }}">{{ shift.room.name }}</span><br>
|
|
<strong>Beginn:</strong> {{ shift.start_at }}{% with shift.start_at|night_from_to as night %}{% if night %} ({{ night }}){% endif %}{% endwith %}<br>
|
|
<strong>Dauer:</strong> {{ shift.duration }}<br>
|
|
{% if shift.event.calendar.restricted %}
|
|
<strong>Nur Team:</strong> {{ shift.required_helpers|default:shift.room.required_helpers }}
|
|
{% else %}
|
|
<strong>Belegung:</strong> {{ shift.registration_count }}/{{ shift.required_helpers|default:shift.room.required_helpers }}
|
|
{% endif %}
|
|
{% if shift.checkin_count is not None %}
|
|
<br>
|
|
<strong>Checkin-Status:</strong> {% if shift.checkin_count >= shift.required_helpers|default:shift.room.required_helpers %}<span class="tag is-rounded is-success">vollständig</span>{% elif shift.checkin_count > 0 %}<span class="tag is-rounded is-warning">teilweise</span>{% else %}<span class="tag is-rounded is-danger">kein Checkin</span>{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</a>
|