joeni

Remove old message on adm index

Author
Maarten Vangeneugden
Date
July 26, 2018, 11:45 p.m.
Hash
500792e9dc46a3bc0b0d4fd632ad6ec0a328ad38
Parent
a1440768412c2a9fb9cdd05987fb03f8818a6d13
Modified file
administration/templates/administration/index.djhtml

administration/templates/administration/index.djhtml

0 additions and 11 deletions.

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