Initial release

This commit is contained in:
Jürgen Mummert
2026-02-17 18:53:23 +01:00
commit 63b5556b21
45 changed files with 3962 additions and 0 deletions
@@ -0,0 +1,19 @@
{% extends "@Contao/frontend_module/_base.html.twig" %}
{% block content %}
<h2>Organisationen</h2>
{% if organizations is empty %}
<p>Keine Organisationen gefunden.</p>
{% else %}
<ul class="member-organizations" aria-label="Liste der Organisationen">
{% for item in organizations %}
<li>
<span>{{ item.title }}</span>
{% if item.editUrl %}
<a href="{{ item.editUrl }}" aria-label="{{ item.title }} bearbeiten">Bearbeiten</a>
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}