{% extends 'domain/backend/layouts/base.html.twig' %} {% block title %}Liste des stations-services{% endblock %} {% block styleheet %} {% endblock %} {% block javascript %} {% endblock %} {% block body %}

Liste des stations-services

Nouveau station
{% for key, station in stations %} {% endfor %}
Id Libelle Image Contact Email Latitude Longitude PubliƩe? actions
{{ key + 1 }} {{ station.libelle }} {{ station.contact }} {{ station.email }} {{ station.latitude }} {{ station.longitude }} {% if station.published %} OUI {% else %} NON {% endif %}
{{ include('domain/backend/station/_delete_form.html.twig') }}
{% endblock %}