remove flex-blocking wrapper

This commit is contained in:
krmax44 2022-03-17 16:59:42 +01:00
parent c0172a93b9
commit b476e88c79
No known key found for this signature in database
GPG key ID: 5C499A4F4EC4EE03

View file

@ -3,13 +3,12 @@
{% for update in updates %}
{% if wrapper_classes %}<div class="{{ wrapper_classes }}">{% endif %}
<div class="box-card border-blue shadow-blue bg-white" id="update-{{ update.pk }}">
<div>
<a href="{{ update.get_absolute_url }}" class="text-body text-decoration-none">
<div class="box-card-header bg-blue-20 d-flex justify-content-center p-3 p-md-4 tight-margin flex-column">
<div class="d-md-flex">
{% if show_context %}
<div class="order-2 ml-auto">
<span class="badge badge-blue-100 badge-pill mb-2">
<span class="badge badge-blue-100 badge-pill mb-2 ml-md-2">
{{ update.plan.get_section }}
</span>
</div>
@ -49,6 +48,5 @@
</div>
{% endif %}
</div>
</div>
{% if wrapper_classes %}</div>{% endif %}
{% endfor %}