X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/dfcf9b11ca2fc3173a3b6925198836b6ddaaa61c..55d8377fe929f497f86865fc4afc70fc81ceecab:/catalogue/templatetags/catalogue_tags.py diff --git a/catalogue/templatetags/catalogue_tags.py b/catalogue/templatetags/catalogue_tags.py index c642f18..a8d69e6 100755 --- a/catalogue/templatetags/catalogue_tags.py +++ b/catalogue/templatetags/catalogue_tags.py @@ -53,10 +53,11 @@ def lesson_nav(lesson): root = lesson.section siblings = Lesson.objects.filter(type='course', level=lesson.level, section=root) mark_level = False + link_other_level = True else: root = None siblings = Lesson.objects.filter(type=lesson.type) - mark_level = True + mark_level = link_other_level = lesson.type == 'course' return { "lesson": lesson, "root": root,