4e36e22b42e30925eb192340315261ccce1ac873
[edumed.git] / catalogue / templates / catalogue / snippets / lesson_nav.html
1 <h1>
2 {% if root %}
3     <a href="{{ root.get_absolute_url }}">{{ root }}</a>
4 {% elif lesson.type == 'synthetic' %}
5     <a href="{% url 'catalogue_lessons' %}">Lekcje syntetyczne ze wszystkich tematów</a>
6 {% elif lesson.type == 'project' %}
7     <a href="{% url 'catalogue_lessons' %}">Projekty ze wszystkich tematów</a>
8 {% else %}
9     <a href="{% url 'catalogue_lessons' %}">Inne</a>
10 {% endif %}
11 </h1>
12
13 <ul>
14 {% for item in siblings %}
15     <li>
16     {% if item == lesson %}
17         <strong>{{ item }}</strong>
18         {% if mark_level and item.level.slug == 'liceum' %} (poziom zaawansowany){% endif %}
19     {% else %}
20         <a href="{{ item.get_absolute_url }}">{{ item }}
21             {% if mark_level and item.level.slug == 'liceum' %} (poziom zaawansowany){% endif %}
22         </a>
23     {% endif %}
24     </li>
25 {% endfor %}
26 </ul>
27
28 {% if link_other_level %}
29 {% with other=lesson.get_other_level %}
30     {% if other %}
31         <p>Ten temat jest dostępny również na 
32         <a href="{% url 'catalogue_lessons' %}#{{ lesson.section.slug }}_{{ other.slug }}">poziomie
33         {% if other.slug == 'liceum' %}zaawansowanym{% else %}podstawowym{% endif %}</a>.</p>
34     {% endif %}
35 {% endwith %}
36 {% endif %}