20 lines
582 B
Twig
20 lines
582 B
Twig
{% 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 %}
|