{% extends "base.html" %} {% load i18n %} {% block main %}
{# This data-id "outletsGoogleMap" defines the div, that holds the actual map. The other id attribute is just for styling and reference. #}

{{ country.name }}

{% for outlet in object_list %} {# NOTE! data-class is required for the map to work. Keep it on the element above the lat/lon inputs to have markers visible on the map. #}

{{ outlet.name }}

{{ outlet.street}}

{{ outlet.city }}{{ outlet.zip }}

{% if outlet.phone %}

{% trans "Tel" %}.: {{ outlet.phone}}

{% endif %}
{% endfor %}
{% endblock %}