Statistics
| Branch: | Tag: | Revision:

root / djnro / templates / front / participants.html @ ea51bc9d

History | View | Annotate | Download (1.8 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
{% block extrahead %}
10
<style type="text/css">
11
  .headtitle {font-family: "Franklin Gothic Demi", "Franklin Gothic", "ITC Franklin Gothic", Arial, sans-serif; letter-spacing: -1px; }
12
</style>
13
<script type="text/javascript" src="{% static 'js/jquery.min.js' %}"></script>
14
{% endblock %}
15

    
16

    
17
{% block subcontent %}
18
        {% load tolocale %}
19
        <h4>{% trans "Participating Institutions" %}</h4>
20
        <hr>
21
        <div>{% trans "In"%} {% trans COUNTRY_NAME %} {% trans "eduroam is provided by the following instituitons/organizations" %}</div><br>
22
                                        <div>{% for i in institutions %}
23
                                        <address>
24
                                                <strong>{% tolocale i.institution LANGUAGE_CODE %}</strong><br>
25
                                                {% with i.institution.get_active_cat_enrl as cats %}
26
                                                    {% for cat in cats %}
27
                                                    <a href="{{cat}}" target="_blank">eduroam CAT configuration profiles</a><span style="font-weight: bold; font-size:15px; color:red;">*</span><br>{% endfor %}
28
                                            {% endwith %}
29
                                                {{i.address_street}}<br>
30
                                                {{i.address_city}}
31
                                                {% if i.url.all|length > 0 %}
32
                                                    <dl style="margin-top: 0px;">
33
                                                            <dt style="font-weight: normal;">urls</dt>
34
                                                            <dd>
35
                                                {% 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 %}
36
                                                </dd>
37
                                                    </dl>
38
                                                    {% endif %}
39

    
40

    
41
                                        </address>
42

    
43

    
44

    
45
                                        {% endfor %}</div>
46
                                        {% if catexists %}
47
                                        <span style="font-size:11px;"><span style="color:red;">*</span>: Institution admiminstrators may have not created CAT profiles for all/any devices</span>
48
                                        {% endif %}
49
                                        {% endblock %}
50

    
51