Compare commits

..

No commits in common. '4c47546415afc74f334fcc6f06cdf8471b6ff40c' and 'b897bed39c9b32d76afa2852e2b190a0eab30d30' have entirely different histories.

@ -20,18 +20,14 @@
<strong>Dauer:</strong> {{ shift.duration }}<br> <strong>Dauer:</strong> {{ shift.duration }}<br>
<strong>Treffpunkt:</strong> {{ shift.room.meeting_location|linebreaksbr }} <strong>Treffpunkt:</strong> {{ shift.room.meeting_location|linebreaksbr }}
</p> </p>
{% if shift.room.description %} {% if shift.room.description %}
<div class="description"> <strong>Beschreibung:</strong>
<strong>Beschreibung:</strong> <p>{{ shift.room.description|linebreaksbr }}</p>
<p>{{ shift.room.description|linebreaksbr|safe }}</p> {% endif %}
</div> {% if shift.description %}
{% endif %} <strong>Zusatzinfo:</strong>
{% if shift.description %} <p>{{ shift.description|linebreaksbr }}</p>
<div class="description"> {% endif %}
<strong>Zusatzinfo:</strong>
<p>{{ shift.description|linebreaksbr }}</p>
</div>
{% endif %}
</div> </div>
{% if can_register and not shift.deleted %} {% if can_register and not shift.deleted %}
<form action="" method="post"> <form action="" method="post">

@ -27,10 +27,6 @@
--background: #fff; --background: #fff;
} }
.description {
margin-bottom: 1em;
}
.sticky-nav { .sticky-nav {
background-color: var(--background); background-color: var(--background);
margin: 0 -0.75rem; margin: 0 -0.75rem;

@ -4,17 +4,10 @@
{% block content %} {% block content %}
<h3 class="title is-spaced">{% if shift.deleted %}(gelöscht) {% endif %}{{ shift.room.name }} {{ shift.start_at }} ({{ shift.registration_count }}/{{ shift.required_helpers|default:shift.room.required_helpers }})</h3> <h3 class="title is-spaced">{% if shift.deleted %}(gelöscht) {% endif %}{{ shift.room.name }} {{ shift.start_at }} ({{ shift.registration_count }}/{{ shift.required_helpers|default:shift.room.required_helpers }})</h3>
{% if shift.room.description %}
<div class="description">
<strong>Beschreibung:</strong>
<p>{{ shift.room.description|safe|linebreaksbr }}</p>
</div>
{% endif %}
{% if shift.description %} {% if shift.description %}
<div class="description"> <div class="content">
<strong>Zusatzinfo:</strong> <em>{{ shift.description|linebreaksbr }}</em>
<p>{{ shift.description|linebreaksbr }}</p> </div>
</div>
{% endif %} {% endif %}
{% if shift.shiftregistration_set.all %} {% if shift.shiftregistration_set.all %}
<h5 class="subtitle">Helfer*innen</h5> <h5 class="subtitle">Helfer*innen</h5>

Loading…
Cancel
Save