joeni

Remove obsolete nav.djhtml includes

Author
Maarten 'Vngngdn' Vangeneugden
Date
April 15, 2018, 6:22 p.m.
Hash
361af8bc2b9bd70b6b9a553b0cc16307830da437
Parent
7a1d980462da2689975b8ab320d1ea3d41cf6e16
Modified files
administration/templates/administration/bulletin_board.djhtml
administration/templates/administration/curriculum.djhtml
administration/templates/administration/forms.djhtml
administration/templates/administration/index.djhtml
administration/templates/administration/jobs.djhtml
administration/templates/administration/public.djhtml
administration/templates/administration/room_detail.djhtml
administration/templates/administration/rooms.djhtml
administration/templates/administration/roster.djhtml
administration/templates/administration/settings.djhtml
static/css/main.scss

administration/templates/administration/bulletin_board.djhtml

0 additions and 1 deletion.

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 "Bulletin board" %} | {{ block.super }}
7
7
{% endblock %}
8
8
9
9
{% block main %}
10
10
    {% include "administration/nav.djhtml" %}
11
-
<p>
12
11
    {% blocktrans %}
13
12
        On the university's bulletin board, the messages of all departments are
14
13
        listed. Some of these messages are public, some are private.
15
14
    {% endblocktrans %}
16
15
</p>
17
16
18
17
<h1 id="{% trans "exam-commission" %}">{% trans "Exam commission" %}</h2>
19
18
{% for decision in exam_commission_decisions %}
20
19
    <time datetime="{{ decision.date|date:"c" }}">{{ decision.date|date:"DATE_FORMAT" }}</time>
21
20
    <br />
22
21
    {{ decision.text|org }}
23
22
    <hr />
24
23
{% empty %}
25
24
    <p>
26
25
        {% trans "There are no decisions that affect you." %}
27
26
    </p>
28
27
    <hr />
29
28
{% endfor %}
30
29
31
30
<h1 id="{% trans "department-of-education" %}">{% trans "Department of education" %}</h2>
32
31
{% for message in education_department_messages %}
33
32
    <h3 id="{{ message.title|slugify }}">{{ message.title }}</h3>
34
33
    <time datetime="{{ message.date|date:"c" }}">{{ message.date|date:"DATE_FORMAT" }}</time>
35
34
    <br />
36
35
    {{ message.text|org }}
37
36
    <hr />
38
37
{% empty %}
39
38
    <p>
40
39
        {% trans "No messages have been issued by the education department." %}
41
40
    </p>
42
41
{% endfor %}
43
42
44
43
<h1 id="{% trans "rights" %}">{% trans "Rights" %}</h2>
45
44
<p>
46
45
    {# TODO the translation to english first! #}
47
46
    {% blocktrans %}
48
47
        Raadpleeg het onderwijs- en examenreglement
49
48
50
49
        Op grond van de Rechtspositieregeling in de OER-regeling voor studenten van de UHasselt/tUL kan een student die oordeelt dat een ongunstige studievoortgangsbeslissing (omschreven in Art. 1.2 van de Rechtspositieregeling) aangetast is door een schending van het recht, intern beroep aantekenen, voor zover dit geen voorwerp was van een eerder beroep. Dit beroep wordt formeel ingediend bij de secretaris van de beroepscommissie conform Art. 1.3 lid 4 van de Rechtspositieregeling op volgend adres:
51
50
52
51
        Secretaris interne beroepscommissie
53
52
        Lien Mampaey
54
53
        Universiteit Hasselt
55
54
        Martelarenlaan 42
56
55
        B-3500 Hasselt
57
56
58
57
        Om administratieve redenen wordt de student verzocht om het beroep ook te melden op het volgende emailadres:intern.beroep@uhasselt.be. Het verzoekschrift wordt op straffe van niet-ontvankelijkheid ingediend per aangetekend schrijven binnen een vervaltermijn van 7 kalenderdagen, die ingaat op de dag na de kennisgeving van de genomen studievoortgangsbeslissing aan de student. Als datum van het beroep geldt de datum van het postmerk van de aangetekende zending. Het verzoekschrift van de student omvat op straffe van niet-ontvankelijkheid tenminste:
59
58
60
59
            De naam, een correspondentieadres en de handtekening van de student of zijn raadsman;
61
60
            een vermelding van de beslissing waartegen het beroep gericht is en alle relevante (bewijs)stukken;
62
61
            een omschrijving van de ingeroepen bezwaren.
63
62
    {% endblocktrans %}
64
63
</p>
65
64
66
65
{% endblock main %}
67
66

administration/templates/administration/curriculum.djhtml

0 additions and 1 deletion.

View changes Hide changes
1
1
{% load i18n %}
2
2
3
3
{% block title %}
4
4
    {% trans "Personal curriculum" %} | ◀ Joeni /▶
5
5
{% endblock %}
6
6
7
7
{% block main %}
8
8
    {% include "administration/nav.djhtml" %}
9
-
    <h1>{% trans "Your curricula" %}</h1>
10
9
    {% for curriculum in curricula %}
11
10
        <h2 id="{{ curriculum.year }}-{{ curriculum.year|add:1 }}">
12
11
            {{ curriculum.year }} - {{ curriculum.year|add:1 }}
13
12
        </h2>
14
13
        <p>{% trans "Status" %}:
15
14
            {% if curriculum.approved is none %}
16
15
                {% trans "Processing curriculum; pending decision" %}
17
16
            {% elif curriculum.approved is True %}
18
17
                {% trans "Processed and approved by exam committee" %}
19
18
            {% else %}
20
19
                {% trans "Processed and <strong>DENIED</strong> by exam committee" %}
21
20
            {% endif %}
22
21
        </p>
23
22
24
23
        {# Table in which the courses from the curriculum are displayed, along with the results. #}
25
24
        <table>
26
25
            <tr>
27
26
                <td>{% trans "Course" %}</td>
28
27
                <td>{% trans "ECTS" %}</td>
29
28
                <td>{% trans "Period" %}</td>
30
29
                <td>{% trans "First result" %}</td>
31
30
                <td>{% trans "Second result" %}</td>
32
31
                <td>{% trans "Decision" %}</td>
33
32
            </tr>
34
33
        {% for course_program, course_result in curriculum.course_programmes_results.items %}
35
34
            <tr>
36
35
                <td><a href="{% url 'courses-course-index' course_program.course.slug_name %}">
37
36
                    {{ course_program }}</a></td>
38
37
                <td>{{ course_program.ECTS }}</td>
39
38
                <td>{{ course_program.get_semester_display }}</td>
40
39
                <td>{{ course_result.first_score|default:"-" }}</td>
41
40
                <td>{{ course_result.second_score|default:"-" }}</td>
42
41
                <td>{% with result=course_result.result %}
43
42
                    {% if result == "CRED" or result == "VRST" or result == "TLRD" or result == "ITLR"%}
44
43
                        <span style="color:green;">
45
44
                    {% elif result == "FAIL" %}
46
45
                        <span style="color:red;">
47
46
                    {% elif result == "BDRG" %}
48
47
                        <span style="background-color:red; color:white;">
49
48
                    {% elif result == "STOP" %}
50
49
                        <span style="color:black;">
51
50
                    {% endif %}
52
51
                    {{ course_result.get_result_display }}</span>
53
52
                {% endwith %}</td>
54
53
            </tr>
55
54
        {% endfor %}
56
55
        </table>
57
56
    {% endfor %}
58
57
59
58
    <a class="btn" href="curriculum-change.pdf" download>{% trans "Request curriculum change" %}</a>
60
59
{% endblock main %}
61
60

administration/templates/administration/forms.djhtml

0 additions and 1 deletion.

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 "Forms" %} | {{ block.super }}
7
7
{% endblock %}
8
8
9
9
{% block main %}
10
10
    {% include "administration/nav.djhtml" %}
11
-
    <h1 id="{% trans "student-secretary" %}">{% trans "Student secretary" %}</h1>
12
11
13
12
    {% blocktrans %}
14
13
        <p>
15
14
            In case of an <strong>accident involving physical injury</strong>, download and fill out the
16
15
            <a href="https://uhintra02.uhasselt.be/files/studdosst/lichamelijke%20ongevallen%20-%20aangifteformulier%20Ethias.pdf" download>Statement form for physical accidents</a>.
17
16
        </p>
18
17
        <ol>
19
18
            <li>Let the doctor that did the treatment fill out the form</li>
20
19
            <li>Fill out the other data yourself</li>
21
20
        </ol>
22
21
        <p>
23
22
            After that, deliver the form as fast as possible to the student's
24
23
            secretary of Hasselt University.
25
24
        </p>
26
25
    {% endblocktrans %}
27
26
28
27
    <h1 id="{% trans "student-counseling" %}">{% trans "Student counseling" %}</h1>
29
28
    <ul>
30
29
        <li>Heb je een leerstoornis (dyslexie/dysorthografie of dyscalculie) of een andere functiebeperking (ADHD, autisme, een visuele beperking,...)?</li>
31
30
        <li>Combineer je jouw studies met een job, topsport of kunstbeoefening op professioneel niveau?</li>
32
31
    </ul>
33
32
    <p>
34
33
        Een functiebeperking/job/topsport/kunstbeoefening mag geen belemmering zijn om te (gaan) studeren en mag geen aanleiding geven tot onnodige studievertraging.
35
34
        Daarom bieden we deze studenten waar nodig extra ondersteuning en begeleiding bij de studies en extra faciliteiten bij het onderwijs en de examens.
36
35
37
36
Aarzel dus niet om je aan te melden aan de hand van onderstaand formulier.
38
37
39
38
In een persoonlijk gesprek met de studiebegeleider kan je vervolgens aangeven welke moeilijkheden je ervaart of verwacht en bekijken we hoe we je hierbij kunnen ondersteunen.
40
39
    </p>
41
40
    <ul>
42
41
        <li><a href="https://uhintra02.uhasselt.be/studdosst/sdsDocumentenBegeleiding.aspx" download>
43
42
            {% trans "Facilities request form for students in special circumstances" %}
44
43
        </a></li>
45
44
        <li><a href="http://www.uhasselt.be/specialefaciliteiten">
46
45
            {% trans "More information about special circumstances" %}
47
46
        </a></li>
48
47
    </ul>
49
48
50
49
51
50
    <h1 id="{% trans "student-services" %}">{% trans "Student services" %}</h1>
52
51
    <ul>
53
52
        <li><a href="">Aanvraag tussenkomst openbaar vervoer</a></li>
54
53
        <li><a href="">Aanvraag gespreide betaling laptop of tablet  </a></li>
55
54
        <li><a href="">Aanvraag tussenkomst fitness</a> | <strong>Een tussenkomst fitness kan enkel aangevraagd worden na inschrijving voor een sportkaart en betaling ervan!</strong></li>
56
55
        <li><a href="">Aanvraag voorschot op studietoelage</a></li>
57
56
        <li><a href="">Aanvraag financiële tussenkomst in studiekosten</a></li>
58
57
        <li><a href="">Aanvraag culturele tegemoetkoming</a></li>
59
58
        <li><a href="">Aanvraag woontoelage voor kamerstudenten</a></li>
60
59
        <li><a href="">Laptop- of tablettoelage voor studenten</a></li>
61
60
        <li><a href="">Aanvraag voor boekentoelage</a></li>
62
61
        <li><a href="">CV jobstudent UHasselt</a></li>
63
62
    </ul>
64
63
{% endblock main %}
65
64

administration/templates/administration/index.djhtml

0 additions and 1 deletion.

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

administration/templates/administration/jobs.djhtml

0 additions and 1 deletion.

View changes Hide changes
1
1
{% load i18n %}
2
2
{% load humanize %}
3
3
4
4
{% block title %}
5
5
    {% trans "Jobs" %} | {{ block.super }}
6
6
{% endblock %}
7
7
8
8
{% block main %}
9
9
    {% include "administration/nav.djhtml" %}
10
-
    <h1 id="{% trans "about-jobs" %}">{% trans "About jobs" %}</h1>
11
10
    <p>
12
11
        {% blocktrans %}
13
12
            This page serves as the supply & demand center for jobs concerning
14
13
            Hasselt University and its students.
15
14
        {% endblocktrans %}
16
15
17
16
18
17
19
18
20
19
Aantal uren dat je mag werken als jobstudent:
21
20
22
21
Een studentenjob valt onder een arbeidsovereenkomst voor studenten. Studentenjobs zijn onderworpen aan verminderde RSZ bijdragen. Vanaf 01/01/2017 is er een nieuwe regeling ingevoerd. Bij alle werkgevers samen mogen er 475 uren gewerkt worden aan verminderde RSZ bijdragen. De solidariteitsbijdrage bedraagt 2,71% van je brutoloon.
23
22
24
23
Bij het overschrijden van het maximum aantal arbeidsuren (475) zullen de gewone RSZ bijdragen (13,07%) toegepast worden voor alle reeds gewerkte dagen! De student verklaart op erewoord niet meer dan 475 uren te verrichten per kalenderjaar. Deze info is te raadplegen via student@work.be Let wel voor het behoud van je kinderbijslag mag je tijdens het 1e, 2e en 4e kwartaal maximum 240 uren per kwartaal gewerkt hebben!
25
24
26
25
    De studenten worden via e-mail in kennis gesteld van de mogelijkheid tot kandidaatstelling voor jobwerk.
27
26
    Studenten kunnen zich kandidaat stellen door zich in te schrijven via hun Studentendossier, Studentenjobs , sollicitatie studentenjob. De student duidt de periodes aan waarin hij beschikbaar is voor een job.
28
27
    Bij toewijzing wordt een prioriteitsvolgorde gevolgd. Hierbij krijgen beursstudenten met voorrang een job aangeboden.
29
28
    Deze prioriteitsvolgorde kan niet in alle gevallen gevolgd worden om volgende redenen: bepaalde diensten wensen specifieke personen aan te werven omwille van het technisch karakter van de opdrachten (bijv. onderzoekslabo’s).
30
29
    In geval van ziekte moet de student de dienst Studentenvoorzieningen verwittigen en een doktersbriefje binnen brengen!
31
30
    Bij vervroegde stopzetting verwittigt de verantwoordelijke de dienst Studentenvoorzieningen onmiddellijk en de student moet met zijn contract naar deze dienst gaan. De vervroegde stopzetting mag enkel om dringende redenen en dient gemotiveerd te worden.
32
31
33
32
Alle contracten voor jobwerk tijdens de zomervakantie dienen ten laatste getekend te zijn voor 27 juni (ook de contracten die ingaan vanaf 16 juli of later) bij de dienst Studentenvoorzieningen. Een eventuele annulatie van de overeenkomst kan volgens de boven beschreven procedure, en dient altijd ten laatste twee dagen voor aanvang van het jobwerk schriftelijk te zijn geregeld!
34
33
De contracten kunnen ondertekend worden aan de balie van studentenvoorzieningen, van maandag tot donderdag van 9.00 u tot 16.00 u op de Campus Hasselt en op vrijdag van 9.00 u tot 14.00 u op de Campus Diepenbeek (let op: tijdens de zomervakantie geldt mogelijk een andere regeling). 
35
34
        </p><p>
36
35
37
36
    <a href="https://uhintra02.uhasselt.be/files/studdosst/Arbeidsreglement.pdf"
38
37
       class="btn">
39
38
        {% trans "Hasselt University work regulations" %}
40
39
    </a>
41
40
    <br />
42
41
    <br />
43
42
    <br />
44
43
    <a href="http://vdab.be/mijnvdab/jobs/wz/jobs.jsp?dist%20channel=jos%20action=JOS"
45
44
       class="btn">
46
45
        {% trans "JOS project VDAB" %}
47
46
    </a>
48
47
    </p>
49
48
    <h2 id="{% trans "salary" %}">{% trans "Salary" %}</h2>
50
49
    <p>{% trans "Application of legal payment for minors" %}</p>{# toepassing wettelijk jeugdloon #}
51
50
52
51
    <a href="https://uhintra02.uhasselt.be/files/studdosst/kostrpijs%20jobstu.pdf">TODO these tables</a>
53
52
54
53
 <h2 id="{% trans "student-start-up" %}">StudentStartUP</h2>
55
54
 <p>
56
55
    {% blocktrans %}
57
56
        StudentStartUP is a free service of Hasselt University offered to their students. StudentStartUP helps you prepare and start your own business or to acclerate the growth of your company.
58
57
59
58
    Even if you don't want to start your own business, but would like to receive some tips and tricks on entrepreneurial skills like taking initiative, dare, do, present, being creative, work together, etc. you can contact StudentStartUP. We also invite you to participate in activities concerning these topics.
60
59
61
60
        <br />If you already own a business, please enter your details here:
62
61
     {% endblocktrans %}
63
62
 </p>
64
63
65
64
66
65
67
66
{% endblock main %}
68
67

administration/templates/administration/public.djhtml

0 additions and 1 deletion.

View changes Hide changes
1
1
{# Redirect to this template when there is no account logged in #}
2
2
{% load i18n %}
3
3
4
4
{% block title %}
5
5
    {% trans "▶▶ Hasselt University | Administration" %}
6
6
{% endblock %}
7
7
8
8
{% block main %}
9
9
    {% include "administration/nav.djhtml" %}
10
-
    <h1>{% trans "Administration" %}</h1>
11
10
    <p>
12
11
        {% blocktrans %}
13
12
            Welcome to the administration system of Hasselt University.
14
13
        {% endblocktrans %}
15
14
    </p>
16
15
{% endblock main %}
17
16

administration/templates/administration/room_detail.djhtml

0 additions and 1 deletion.

View changes Hide changes
1
1
{# "silent" blocks the cycle operator from printing the cycler, and in subsequent calls #}
2
2
{% load i18n %}
3
3
4
4
{% block title %}
5
5
    {% trans "Info about" %} {{ room.name }} | {{ block.super }}
6
6
{% endblock %}
7
7
8
8
{% block main %}
9
9
    {% include "administration/nav.djhtml" %}
10
-
    <h1 id="{% trans "about" %}-{{ room.name }}">{% trans "About" %} {{ room.name }}</h1>
11
10
    <h2 id="{% trans "properties" %}">{% trans "Properties" %}</h2>
12
11
    <table>
13
12
        <tr>
14
13
            <td>👥</td>
15
14
            <td>{{ room.seats }} {% trans "seats" %}</td>
16
15
        </tr>
17
16
        <tr>
18
17
            <td>🏷</td>
19
18
            <td>{{ room.get_category_display }}</td>
20
19
        </tr>
21
20
        <tr>
22
21
            {% if room.wheelchair_accessible %}
23
22
                <td></td>
24
23
                <td>{% trans "Wheelchair accessible" %}</td>
25
24
            {% else %}
26
25
                <td>🚫</td>
27
26
                <td>{% trans "Not available for wheelchairs" %}</td>
28
27
            {% endif %}
29
28
        </tr>
30
29
        <tr>
31
30
            {% if room.computers_available > 0 %}
32
31
                <td>🖥</td>
33
32
                <td>{{ room.computers_available }} computers</td>
34
33
            {% else %}
35
34
                <td>🚫</td>
36
35
                <td>{% trans "No computers" %}</td>
37
36
            {% endif %}
38
37
39
38
        </tr>
40
39
        <tr>
41
40
            {% if room.projector_available %}
42
41
                <td>📽</td>
43
42
                <td>{% trans "Projector available" %}</td>
44
43
            {% else %}
45
44
                <td>🚫</td>
46
45
                <td>{% trans "No projector" %}</td>
47
46
            {% endif %}
48
47
        </tr>
49
48
        <tr>
50
49
            {% if room.reservable %}
51
50
                <td></td>
52
51
                <td>{% trans "Reservable" %}</td>
53
52
            {% else %}
54
53
                <td></td>
55
54
                <td>{% trans "Not reservable" %}</td>
56
55
            {% endif %}
57
56
        </tr>
58
57
    </table>
59
58
    {% if room.note %}
60
59
        <p>
61
60
            {{ room.note }}
62
61
        </p>
63
62
    {% endif %}
64
63
65
64
    <h2 id="{% trans "reservations-and-occupations" %}">{% trans "Reservations & occupations" %}</h2>
66
65
    {% include "administration/roster_t.djhtml" %}
67
66
68
67
{% endblock main %}
69
68

administration/templates/administration/rooms.djhtml

0 additions and 1 deletion.

View changes Hide changes
1
1
{# "silent" blocks the cycle operator from printing the cycler, and in subsequent calls #}
2
2
{% load i18n %}
3
3
4
4
{% block title %}
5
5
    {% trans "Rooms" %} | {{ block.super }}
6
6
{% endblock %}
7
7
8
8
{% block main %}
9
9
    {% include "administration/nav.djhtml" %}
10
-
    <h1 id="campus-diepenbeek">Campus Diepenbeek</h1>
11
10
    <h2 id="{% trans "free-rooms" %}">{% trans "Free rooms" %}</h2>
12
11
    <ul>
13
12
    {% for free_room, until in free_rooms.items %}
14
13
        <li><a href="{% url "administration-room-detail" free_room %}">{{ free_room }}</a>
15
14
            {% if until is None %}
16
15
                {% trans "is free for the rest of the day." %}
17
16
            {% else %}
18
17
                {% trans "is free until" %} {{ until|time:"TIME_FORMAT" }}</li>
19
18
            {% endif %}
20
19
    {% endfor %}
21
20
    </ul>
22
21
23
22
    {% for block in blocks %}
24
23
        <h2 id="{{ block }}">{{ block }}</h2>
25
24
        <ul>
26
25
        {% for room in rooms %}
27
26
            {% if room|make_list|first == block %}
28
27
                <li><a href="{% url "administration-room-detail" room %}">{{ room }}</a></li>
29
28
            {% endif %}
30
29
        {% endfor %}
31
30
        </ul>
32
31
    {% endfor %}
33
32
34
33
{% endblock main %}
35
34

administration/templates/administration/roster.djhtml

0 additions and 1 deletion.

View changes Hide changes
1
1
{% cycle "hour" "first quarter" "half" "last quarter" as hour silent %}
2
2
{# "silent" blocks the cycle operator from printing the cycler, and in subsequent calls #}
3
3
{% load i18n %}
4
4
5
5
{% block title %}
6
6
    {% trans "Roster" %} | {{ block.super }}
7
7
{% endblock %}
8
8
9
9
{% block main %}
10
10
    {% include "administration/nav.djhtml" %}
11
-
    <h1>{% trans "Personal timetable" %}</h1>
12
11
    <h2>{% trans "Main hour roster" %}</h2>
13
12
14
13
15
14
    {% include "administration/roster_t.djhtml" %}
16
15
17
16
18
17
        <a class="btn" href="{% url "administration-roster" begin=prev_begin end=prev_end %}">
19
18
            {% trans "Previous week" %}
20
19
        </a>
21
20
        <a class="btn" href="{% url "administration-roster" %}">
22
21
            {% trans "Current week" %}
23
22
        </a>
24
23
        <a class="btn" href="{% url "administration-roster" begin=next_begin end=next_end %}">
25
24
            {% trans "Next week" %}
26
25
        </a>
27
26
        {# TODO: Add links to "previous week", "next week" and "current week" with large buttons #}
28
27
29
28
    <h2>{% trans "Explanation" %}</h2>
30
29
    <p>
31
30
        {% trans "Personal roster from" %} {{ begin|date }} {% trans "to" %} {{ end|date }}
32
31
    </p>
33
32
    <p>
34
33
        {% blocktrans %}
35
34
            Some fields may have additional information that might be of interest
36
35
            to you. This information is shown in different ways with colour codes.
37
36
        {% endblocktrans %}
38
37
    </p>
39
38
40
39
    <dl>
41
40
        <dt><span class="event-update">
42
41
            {% trans "Recent event update" %}
43
42
        </span></dt>
44
43
        <dd>
45
44
            {% blocktrans %}
46
45
                This event had one or more of its properties changed
47
46
                in the last five days. This can be the room, the hours, the subject, ...
48
47
                You're encouraged to take note of that.
49
48
            {% endblocktrans %}
50
49
        </dd>
51
50
        <dt><span class="event-new">
52
51
            {% trans "New event" %}
53
52
        </span></dt>
54
53
        <dd>
55
54
            {% blocktrans %}
56
55
                This is a new event, added in the last five days.
57
56
            {% endblocktrans %}
58
57
        </dd>
59
58
        <dt><span class="event-note">
60
59
            {% trans "Notification available" %}
61
60
        </span></dt>
62
61
        <dd>
63
62
            {% blocktrans %}
64
63
                This event has a note attached to it by the docent. Hover over
65
64
                the event to display the note.
66
65
            {% endblocktrans %}
67
66
        </dd>
68
67
    </dl>
69
68
70
69
{% endblock main %}
71
70

administration/templates/administration/settings.djhtml

0 additions and 1 deletion.

View changes Hide changes
1
1
{% load i18n %}
2
2
{% load humanize %}
3
3
4
4
{% block title %}
5
5
    {% trans "Settings" %} | {{ block.super }}
6
6
{% endblock %}
7
7
8
8
{% block main %}
9
9
    {% include "administration/nav.djhtml" %}
10
-
    <h1>{% trans "Settings" %}</h1>
11
10
    <h2>{% trans "Guidelines" %}</h2>
12
11
    <p>
13
12
        {% blocktrans %}
14
13
            On this screen, you can edit your personal details regarding your
15
14
            address, nationality, and other details.
16
15
        {% endblocktrans %}
17
16
    </p>
18
17
    <p>
19
18
        {% blocktrans %}
20
19
            The address data of where you study and the titularis address only
21
20
            need to be filled out if it differs from your home address. If not,
22
21
            you can leave those fields blank.
23
22
        {% endblocktrans %}
24
23
    </p>
25
24
26
25
    {#{% crispy user_data_form %}#}
27
26
    <form action="{% url "administration-settings" %}" method="post">
28
27
        {% csrf_token %} {# TODO I don't think that's necessary here #}
29
28
        {% include "joeni/form.djhtml" with form=user_data_form %}
30
29
        <input type="submit" value="{% trans "Save changes" %}" />
31
30
    </form>
32
31
{% endblock main %}
33
32

static/css/main.scss

4 additions and 0 deletions.

View changes Hide changes
1
1
    margin-left: 25%;
2
2
    margin-right: 2%;
3
3
}
+
4
}
4
5
5
6
h1 {
6
7
    font-family: ubuntu;
7
8
    text-decoration: underline solid $uhasselt-color;
8
9
    color: $uhasselt-color;
9
10
}
10
11
+
12
    font-family: ubuntu;
+
13
}
+
14