Initial release
This commit is contained in:
@@ -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 %}
|
||||
Reference in New Issue
Block a user