Statistics
| Branch: | Tag: | Revision:

root / djnro / templates / front / participants.html @ 242932f3

History | View | Annotate | Download (1.5 kB)

1
{% extends "base.html" %}
2
{% load i18n %}
3
{% load staticfiles %}
4
{% block currentpagetitle %}{% trans "Participants" %}{% endblock %}
5
{% block homepage %}{% endblock %}
6
{% block hometop %}{% endblock %}
7
{% block participants %}active{% endblock %}
8

    
9

    
10
{% block subcontent %}
11
{% load tolocale %}
12
<h1>{% trans "Participating Institutions" %}</h1>
13
<hr>
14
<div>{% trans "In"%} {% trans COUNTRY_NAME %} {% trans "eduroam is provided by the following instituitons/organizations" %}</div>
15
<div>
16
        {% for i in institutions %}
17
        <div class="col-md-6">
18
                <address>
19
                        <strong>{% tolocale i.institution LANGUAGE_CODE %}</strong><br/>
20
                        {% with i.institution.get_active_cat_enrl as cats %}
21
                                {% for cat in cats %}
22
                                                <a href="{{cat}}" target="_blank">eduroam CAT configuration profiles</a><br/>
23
                                                <span style="font-weight: bold; font-size:15px; color:red;">*</span><br/>
24
                                {% endfor %}
25
                        {% endwith %}
26
                        {{i.address_street}}<br>
27
                        {{i.address_city}}
28
                        {% if i.url.all|length > 0 %}
29
                    <dl style="margin-top: 0px;">
30
                                <dt style="font-weight: normal;">urls</dt>
31
                                <dd>
32
                                        {% for u in i.url.all %}{% if u %}<a href="{{u.url}}">{{u.url}}</a>  {{u.get_urltype_display}} ({{u.get_lang_display}})<br>{% endif %}{% endfor %}
33
                                </dd>
34
                        </dl>
35
                        {% endif %}
36
                </address>
37
        </div>
38
        {% endfor %}
39
</div>
40
{% if catexists %}
41
        <span style="font-size:11px;"><span style="color:red;">*</span>: Institution admiminstrators may have not created CAT profiles for all/any devices</span>
42
{% endif %}
43
{% endblock %}
44

    
45