Some tweaks on Oblique

This commit is contained in:
2025-11-07 14:31:05 +01:00
parent cca9022f53
commit c5f4715e97
3 changed files with 178 additions and 105 deletions

View File

@@ -11,16 +11,18 @@
<div class="row mb-4">
<div class="col-md-12">
<h2 class="h3" id="{{ Anfang }}">{{ Anfang }}</h2>
<div class="list-group">
{% for Wort in Worte %}
<a href="{% url 'stichwort_detail' stichwort=Wort %}"
class="list-group-item list-group-item-action">
{{ Wort }}
</a>
{% endfor %}
</div>
</div>
</div>
<div class="row mb-4">
{% for Wort in Worte %}
<div class="col-md-4 mb-2">
<a href="{% url 'stichwort_detail' stichwort=Wort %}"
class="list-group-item list-group-item-action">
{{ Wort }}
</a>
</div>
{% endfor %}
</div>
{% endfor %}
</div>
{% endblock %}