21 lines
695 B
HTML
21 lines
695 B
HTML
{% load shift_extras %}
|
|
|
|
<div class="column is-one-quarter">
|
|
<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|duration }}
|
|
</div>
|
|
<div class="buttons is-right">
|
|
<a class="button is-info is-small mr-0" href="{% url 'shift' shift.id %}">Details</a>
|
|
{% if not registered %}
|
|
<a class="button is-primary is-small mr-0" href="{% url 'shift' shift.id %}">Mithelfen</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|