shiftregister/shiftregister/app/templates/partials/shift_listitem.html

19 lines
656 B
HTML

<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 }}
</div>
<div class="buttons is-right">
<a class="button is-info is-small" href="{% url 'shift' shift.id %}">Details</a>
{% if not registered %}
<a class="button is-primary is-small ml-3" href="{% url 'shift' shift.id %}">Mithelfen</a>
{% endif %}
</div>
</div>
</div>