Skip to content
Snippets Groups Projects
Commit 07811df7 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Merge branch '86-show-notification-if-no-timetable-exists-in-one-category' into 'master'

Resolve "Show notification if no timetable exists in one category"

Closes #86

See merge request !231
parents 109ed213 b41fc9f8
Branches 9-move-payment-status-icon-to-invoice-method
No related tags found
1 merge request!231Resolve "Show notification if no timetable exists in one category"
Pipeline #49307 passed
Pipeline: AlekSIS

#49315

    ......@@ -21,6 +21,7 @@ Added
    ~~~~~
    * Add support for automatically generating PDF files of substitutions plans on data changes.
    * Display warning if no timetable exists in one category.
    Changed
    ~~~~~~~
    ......
    ......@@ -21,6 +21,9 @@
    href="{% url 'timetable' 'teacher' teacher.pk %}">
    {{ teacher.short_name }}
    </a>
    {% empty %}
    {% trans 'No teachers timetables available.' as message %}
    {% include 'components/msgbox.html' with status='missing_teachers' icon='warning' msg=message %}
    {% endfor %}
    </div>
    ......@@ -32,6 +35,9 @@
    href="{% url 'timetable' 'group' class.pk %}">
    {{ class.short_name }}
    </a>
    {% empty %}
    {% trans 'No group timetables available.' as message %}
    {% include 'components/msgbox.html' with status='missing_groups' icon='warning' msg=message %}
    {% endfor %}
    </div>
    ......@@ -43,6 +49,9 @@
    href="{% url 'timetable' 'room' room.pk %}">
    {{ room.short_name }}
    </a>
    {% empty %}
    {% trans 'No room timetables available.' as message %}
    {% include 'components/msgbox.html' with status='missing_rooms' icon='warning' msg=message %}
    {% endfor %}
    </div>
    </div>
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment