{% extends 'admin/layout/base.html.twig' %} {% block title %}{{ 'metro_stations'|trans }}{% endblock %} {% block stylesheets %} {{ encore_entry_link_tags('css/city') }} {% endblock %} {% block body %}
{% for city in cities %} {% for station in city.metroStations %} {% endfor %} {% else %} {% endfor %}
{{ 'table.city_name' | trans }} {{ 'table.action' | trans }}
{{ city.name }} {{ include('admin/city/_action_form.html.twig', {city: city}, with_context = false) }}
{{ station.name }} {{ include('admin/metro/_action_form.html.twig', {station: station}, with_context = false) }}
{{ 'no_items_found' | trans }}
{% endblock %}