{% extends "base.html" %} {% load i18n %} {% block currentpagetitle %}{% trans "Participants" %}{% endblock %} {% block homepage %}{% endblock %} {% block hometop %}{% endblock %} {% block participants %}class="active"{% endblock %} {% block extrahead %} {% endblock %} {% block subcontent %} {% load tolocale %}

{% trans "Participating Institutions" %}


{% trans "In"%} {% trans COUNTRY_NAME %} {% trans "eduroam is provided by the following instituitons/organizations" %}

{% for i in institutions %}
{% tolocale i.institution LANGUAGE_CODE %}
{{i.address_street}}
{{i.address_city}} {% if i.url.all|length > 0 %}
urls
{% for u in i.url.all %}{% if u %}{{u.url}} {{u.get_urltype_display}} ({{u.get_lang_display}})
{% endif %}{% endfor %}
{% endif %}
{% endfor %}
{% endblock %}