45 lines
1.8 KiB
HTML
45 lines
1.8 KiB
HTML
{% extends "helper_base.html" %}
|
|
|
|
{% load shift_extras %}
|
|
|
|
{% block title %}Schichtansicht{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="box">
|
|
{% if is_registered %}
|
|
<div class="notification is-info">Du bist zu dieser Schicht angemeldet. Bitte komm 15 Minuten vor deiner Schicht zum Treffpunkt.</div>
|
|
{% endif %}
|
|
{% if shift.deleted %}
|
|
<div class="notification">Diese Schicht wurde gelöscht.</div>
|
|
{% endif %}
|
|
{% if not can_register and not is_registered %}
|
|
<div class="notification">Diese Schicht ist bereits besetzt.</div>
|
|
{% endif %}
|
|
<div class="content">
|
|
<p>
|
|
<strong>Ort:</strong> <a href="{% url 'pages:view' 'map' %}#{{ shift.room.name|slugify }}">{{ shift.room.name }} 📍</a><br>
|
|
<strong>Beginn:</strong> {{ shift.start_at }}<br>
|
|
<strong>Dauer:</strong> {{ shift.duration|duration }}<br>
|
|
<strong>Treffpunkt:</strong> {{ shift.room.meeting_location|linebreaksbr }}<br>
|
|
<strong>Belegung:</strong> {{ shift.registration_count }}/{{ shift.required_helpers|default:shift.room.required_helpers }}
|
|
</p>
|
|
{% if shift.room.description|length > 100 or shift.description|length > 100 %}
|
|
{% include 'partials/shift_detail_buttons.html'%}
|
|
{% endif %}
|
|
{% if shift.room.description %}
|
|
<div class="description{% if shift.room.description|length > 100 or shift.description|length > 100 %} mt-4{% endif %}">
|
|
<strong>Beschreibung:</strong>
|
|
<p>{{ shift.room.description|linebreaksbr|safe }}</p>
|
|
</div>
|
|
{% endif %}
|
|
{% if shift.description %}
|
|
<div class="description">
|
|
<strong>Zusatzinfo:</strong>
|
|
<p>{{ shift.description|linebreaksbr }}</p>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% include 'partials/shift_detail_buttons.html'%}
|
|
</div>
|
|
{% endblock %}
|