add club links to club list page

This commit is contained in:
imperosol
2026-05-13 10:38:04 +02:00
parent 2de1f9f937
commit 0ce03b4f5c
2 changed files with 24 additions and 3 deletions
+12
View File
@@ -62,6 +62,18 @@
{{ club.name }} {% if not club.is_active %}({% trans %}inactive{% endtrans %}){% endif %}
</h4>
</a>
{% set links = club.links.all() %}
{% if links %}
<br>
<div class="row gap-2x">
{% for link in club.links.all() %}
<a href="{{ link.url }}">
<i class="{{ link.link_type.icon }} fa-xl"></i>
<strong>{{ link.name }}</strong>
</a>
{% endfor %}
</div>
{% endif %}
{{ club.short_description|markdown }}
</div>
</div>