{% load util %} {% load i18n %} {% with page_title=request|make_page_title_for_search_result %} {% include 'site/header.html' %} {% endwith %} {% include 'site/view_header.html' %}
{% trans "Exchanges" %} ({{ count_ixp }})
{% for row in search_ixp %}
{{row.name}} {% if row.sponsorship %} {% endif %} {% if row.sub_name %}
{{ row.sub_name }}
{% endif %}
{% endfor %}
{% trans "Networks" %} ({{ count_net }})
{% for row in search_net%}
{{row.name}} {% if row.sponsorship %} {% endif %} {% if row.sub_name %}
{{ row.sub_name }}
{% endif %}
{% endfor %}
{% trans "Facilities" %} ({{ count_fac }})
{% for row in search_fac %}
{{row.name}} {% if row.sponsorship %} {% endif %} {% if row.sub_name %}
{{ row.sub_name }}
{% endif %}
{% endfor %}
{% trans "Organizations" %} ({{ count_org }})
{% for row in search_org %}
{{row.name}} {% if row.sponsorship %} {% endif %} {% if row.sub_name %}
{{ row.sub_name }}
{% endif %}
{% endfor %}
{% if request.user.is_verified_user %}
{% endif %}
{% include 'site/footer.html' %}