{% extends "base.html" %} {% load wagtailimages_tags wagtailsettings_tags i18n static %} {% get_settings %} {% block content %} {% if settings.globalsite.GlobalSiteSettings.description %}

{{settings.globalsite.GlobalSiteSettings.description}}

{% endif %}

{% trans "Choose your country:" %}

{% for region in regions %} {{region}} {% for country in region.country_sites.all %}
  • {% if country.flag %} {% image country.flag width-30 as tmp_photo %} {{ country.flag.title }} {% endif %} {{ country.name }}
  • {% endfor %} {% endfor %}
    {% endblock %}