{% extends 'admin_base.html.twig' %} {% block title %}Standorte verwalten - Admin{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block content %}

Verwalten Sie alle Standorte und deren Informationen

Standorte verwalten

Zurück zum Dashboard
Bestehende Standorte
{{ locations|length }}
Standorte
{{ locations|filter(l => l.address)|length }}
Mit Adresse
{{ locations|filter(l => l.phone)|length }}
Mit Telefon
{{ locations|filter(l => l.email)|length }}
Mit E-Mail
{% for location in locations %}
{{ location.name }}
{% if location.address %}

Adresse: {{ location.address }}

{% endif %} {% if location.phone %}

Telefon: {{ location.phone }}

{% endif %} {% if location.email %}

E-Mail: {{ location.email }}

{% endif %}
{% if location.description %}
Beschreibung:

{{ location.description }}

{% endif %}
{% if location.isActive %} Aktiv {% else %} Inaktiv {% endif %} {% if location.showOnNarwali %} Narwali.de {% endif %} {% if location.showOnSchwimmMitMobi %} Schwimm-mit-Mobi {% endif %} {% if location.address %} Adresse {% endif %} {% if location.phone %} Telefon {% endif %} {% if location.email %} E-Mail {% endif %} {% if location.description %} Beschreibung {% endif %}
{% else %}
Keine Standorte gefunden

Es sind noch keine Standorte angelegt.

{% endfor %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}