e3b21cf2165dda516a15e03074095bb4597d9991
[edumed.git] / catalogue / templates / catalogue / snippets / lesson_nav.html
1 <h1>
2 {% if root %}
3     <a href="{{ root.get_absolute_url }}">{{ root }}, <br>{{ lesson.level }}</a>
4 {% elif lesson.type == 'synthetic' %}
5     <a href="{% url 'catalogue_lessons' %}">Kurs skrócony, <br>{{ lesson.level }}</a>
6 {% elif lesson.type == 'project' %}
7     <a href="{% url 'catalogue_lessons' %}">Projekty, <br>{{ lesson.level }}</a>
8 {% elif lesson.type == 'added' %}
9     <a href="{% url 'catalogue_lessons' %}#liceum_filmowa">Edukacja filmowa</a>
10 {% else %}
11     <a href="{% url 'catalogue_lessons' %}">Inne</a>
12 {% endif %}
13 </h1>
14
15 <ul>
16 {% for item in siblings %}
17     <li>
18     {% if item == lesson %}
19         <strong>{{ item }}</strong>
20     {% else %}
21         <a href="{{ item.get_absolute_url }}">{{ item }}</a>
22     {% endif %}
23     </li>
24 {% endfor %}
25 </ul>