joeni

Remove note event from roster

Author
Maarten Vangeneugden
Date
July 27, 2018, 12:29 a.m.
Hash
a3fb35864ba011aed6baeb537a35e263284690df
Parent
500792e9dc46a3bc0b0d4fd632ad6ec0a328ad38
Modified file
administration/templates/administration/roster.djhtml

administration/templates/administration/roster.djhtml

2 additions and 2 deletions.

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
    <h1>{% trans "Personal timetable" %}</h1>
11
11
    <h2>{% trans "Main hour roster" %}</h2>
12
12
    <div style="line-height: 2.5em;">
13
13
        <a class="btn" href="{% url "administration-roster" begin=prev_begin end=prev_end %}">{% trans "Previous&nbsp;week" %}</a>
14
14
        <a class="btn" href="{% url "administration-roster" %}">{% trans "Current&nbsp;week" %}</a>
15
15
        <a class="btn" href="{% url "administration-roster" begin=next_begin end=next_end %}">{% trans "Next&nbsp;week" %}</a>
16
16
        <a class="btn" href="{% url "administration-roster-ics" user_slug=2 %}">{% trans "ICS&nbsp;file" %}</a>
17
17
        </div>
18
18
19
19
20
20
    {% include "administration/roster_t.djhtml" %}
21
21
22
22
23
23
        {# TODO: Add links to "previous week", "next week" and "current week" with large buttons #}
24
24
25
25
    <h2>{% trans "Explanation" %}</h2>
26
26
    <p>
27
27
        {% trans "Personal roster from" %} {{ begin|date }} {% trans "to" %} {{ end|date }}
28
28
    </p>
29
29
    <p>
30
30
        {% blocktrans %}
31
31
            Some fields may have additional information that might be of interest
32
32
            to you. This information is shown in different ways with colour codes.
33
33
        {% endblocktrans %}
34
34
    </p>
35
35
36
36
    <dl>
37
37
        <dt><span class="event-update">
38
38
            {% trans "Recent event update" %}
39
39
        </span></dt>
40
40
        <dd>
41
41
            {% blocktrans %}
42
42
                This event had one or more of its properties changed
43
43
                in the last five days. This can be the room, the hours, the subject, ...
44
44
                You're encouraged to take note of that.
45
45
            {% endblocktrans %}
46
46
        </dd>
47
47
        <dt><span class="event-new">
48
48
            {% trans "New event" %}
49
49
        </span></dt>
50
50
        <dd>
51
51
            {% blocktrans %}
52
52
                This is a new event, added in the last five days.
53
53
            {% endblocktrans %}
54
54
        </dd>
55
55
        <dt><span class="event-note">
56
-
            {% trans "Notification available" %}
+
56
            {% trans "Notification available" %}
57
57
        </span></dt>
58
58
        <dd>
59
59
            {% blocktrans %}
60
60
                This event has a note attached to it by the docent. Hover over
61
61
                the event to display the note.
62
62
            {% endblocktrans %}
63
63
        </dd>
64
-
    </dl>
+
64
    </dl>
65
65
66
66
{% endblock main %}
67
67