2
0
Fork 0

add link to shift location to shifts

This commit is contained in:
Andreas (@xAndy) Zimmermann 2022-05-17 17:21:54 +02:00
parent af3d9381ad
commit b949c9e37a
3 changed files with 5 additions and 1 deletions

View File

@ -14,7 +14,7 @@
<div class="notification">Diese Schicht ist bereits besetzt.</div>
{% endif %}
<div class="content">
<strong>Ort:</strong> {{ shift.room.name }}<br>
<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 }}<br>
<strong>Treffpunkt:</strong> {{ shift.room.meeting_location }}<br>

View File

@ -0,0 +1,3 @@
<div class="content">
<h5 class="mb-2">Hier erscheint bald die Karte mit allen Schichtstandorten</h5>
</div>

View File

@ -59,6 +59,7 @@
{% endblock %}
<div class="breadcrumb has-dot-separator is-right">
<ul>
<li><a href="{% url 'pages:view' 'map' %}">Karte</a></li>
<li><a href="{% url 'pages:view' 'faq' %}">Häufig gestellte Fragen</a></li>
<li><a href="{% url 'pages:view' 'about' %}">Über diese Seite/Impressum</a></li>
</ul>