X-Git-Url: https://git.rapsys.eu/.gitweb.cgi/airbundle/blobdiff_plain/702a0822f2990b9379f9fd3770ca921d51b96947..7a943bc0d48763bfac7d4a0c5b563e26dfd8cc0a:/Resources/views/default/_city.html.twig diff --git a/Resources/views/default/_city.html.twig b/Resources/views/default/_city.html.twig new file mode 100644 index 0000000..e03c14c --- /dev/null +++ b/Resources/views/default/_city.html.twig @@ -0,0 +1,46 @@ +{# Display cities #} +{% if cities is defined and cities %} +
+
+

{% trans %}Cities{% endtrans %}

+

{% trans %}Libre Air city list{% endtrans%} +

+
+ {% if multimap is defined and multimap %} + + {% endif %} +
+ {% for id, city in cities %} +
+
+

{{ city.city }} ({{ city.id }})

+
+ {# {% if city.locations is defined and city.locations %} +
+ {% for id, location in city.locations %} + + {% endfor %} +
+ {% endif %} #} + {% if city.locations is defined and city.locations %} +
    + {% for id, location in city.locations %} +
  • {% if multimap is defined and multimap %}{{ id }} {% endif %}{{ location.title }}
  • + {% endfor %} +
+ {% endif %} +
+ {% endfor %} +
+
+
+{% endif %}