2
0
Fork 0

Add margin to first signup button

This commit is contained in:
Luca 2023-05-19 14:16:51 +02:00
parent bbbc2733b4
commit 12f8c77b80
1 changed files with 16 additions and 16 deletions

View File

@ -23,22 +23,22 @@
<strong>Treffpunkt:</strong> {{ shift.room.meeting_location|linebreaksbr }}<br> <strong>Treffpunkt:</strong> {{ shift.room.meeting_location|linebreaksbr }}<br>
<strong>Belegung:</strong> {{ shift.registration_count }}/{{ shift.required_helpers|default:shift.room.required_helpers }} <strong>Belegung:</strong> {{ shift.registration_count }}/{{ shift.required_helpers|default:shift.room.required_helpers }}
</p> </p>
{% if shift.room.description|length > 100 or shift.description|length > 100 %} {% if shift.room.description|length > 100 or shift.description|length > 100 %}
{% include 'partials/shift_detail_buttons.html'%} {% include 'partials/shift_detail_buttons.html'%}
{% endif %} {% endif %}
{% if shift.room.description %} {% if shift.room.description %}
<div class="description"> <div class="description{% if shift.room.description|length > 100 or shift.description|length > 100 %} mt-4{% endif %}">
<strong>Beschreibung:</strong> <strong>Beschreibung:</strong>
<p>{{ shift.room.description|linebreaksbr|safe }}</p> <p>{{ shift.room.description|linebreaksbr|safe }}</p>
</div> </div>
{% endif %} {% endif %}
{% if shift.description %} {% if shift.description %}
<div class="description"> <div class="description">
<strong>Zusatzinfo:</strong> <strong>Zusatzinfo:</strong>
<p>{{ shift.description|linebreaksbr }}</p> <p>{{ shift.description|linebreaksbr }}</p>
</div> </div>
{% endif %} {% endif %}
</div> </div>
{% include 'partials/shift_detail_buttons.html'%} {% include 'partials/shift_detail_buttons.html'%}
</div> </div>
{% endblock %} {% endblock %}