joeni

index.djhtml

1
{% extends "joeni/base.djhtml" %}
2
{% load i18n %}
3
{% load humanize %}
4
{% load joeni_org %}
5
6
{% block title %}
7
    {% trans "Administration" %} | {{ block.super }}
8
{% endblock %}
9
10
{% block main %}
11
    <h1>{% trans "Administration" %}</h1>
12
    <p>
13
        {% blocktrans %}
14
            Welcome to the administration website of Hasselt University. Here,
15
            you can find all links related to the university's services,
16
            events, messages, and so on.
17
        {% endblocktrans %}
18
    </p>
19
    <div class="flex-container">
20
        {% for link, title, description in links %}
21
        <a class="flex-items uhasselt" href="{% url link %}">
22
            <span style="font-weight:bold;">{{ title }}</span><br />
23
            {{ description|safe }}
24
        </a>
25
        {% endfor %}
26
    </div>
27
28
    <h2>{% trans "Important telephone numbers and contact services" %}</h2>
29
    <dl>
30
        <dt>{% trans "Student secretary during working hours" %}</dt>
31
        <dd><a href="tel:+3211268100">(+32)11 26 81 00</a></dd>
32
        <dt>{% trans "Student police | District office" %}</dt>
33
        <dd><a href="tel:+3211268115">(+32)11 26 81 15</a></dd>
34
        <dt>{% trans "Student police | District service" %}</dt>
35
        <dd><a href="tel:+3211323300">(+32)11 32 33 00</a></dd>
36
    </dl>
37
    {% comment %}
38
        Psychosociale opvang binnen de kantooruren
39
        Studentenpsycholoog:studentenpsycholoog@uhasselt.be - tel.:011 26 90 48
40
        Maatschappelijk assistent: Liesbeth Huber
41
        Logistieke vragen buiten de kantooruren
42
        Dienst MAT Diepenbeek: 0475 94 30 02
43
        Dienst MAT Hasselt: 0493 59 38 33
44
        Studentenpolitie
45
        Wijkkantoor: 011 26 81 15
46
        Wijkdienst: 011 32 33 00
47
        0499 59 57 28
48
        Tele-Onthaal (24u/24u)
49
        106 
50
    #TODO
51
    {% endcomment %}
52
53
{% endblock main %}
54