{% extends "master.html" %} {% block title %}{{ _('Home') }}{% endblock %} {%block tag %}locations{% endblock %} {% macro render_locations(calendars) -%} {% for location_row in locations %}
{% for location in location_row %} {{ location }} {% endfor %}
{% else %}

{{ _('No locations found') }}

{% endfor %} {%- endmacro %} {% block content %}

{{ _('Locations') }}

{{ render_locations(locations) }}
{% endblock %}