{% extends "layouts/mobile_base.twig" %} {% set active_nav = 'shops' %} {% block title %}{{ translations.shops ?? 'Shops' }}{% endblock %} {% block page_title %}{{ translations.shops ?? 'Shops' }}{% endblock %} {% block page_subtitle %}{{ translations.your_network ?? 'Your network' }} · {{ shops | length }} {{ translations.locations ?? 'locations' }}{% endblock %} {% block head %} {% endblock %} {% block content %} {% if shops | length == 0 %}
{{ translations.no_shops ?? 'No shops found.' }}
{% else %}
{{ translations.all_locations ?? 'All locations' }}
{% for shop in shops %}
{{ shop.name | slice(0,1) | upper }}
{{ shop.name }}
{{ shop.city }}
{% endfor %} {% endif %} {% endblock %}