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>
9 <a href="{% url 'catalogue_lessons' %}">Inne</a>
14 {% for item in siblings %}
16 {% if item == lesson %}
17 <strong>{{ item }}</strong>
18 {% if mark_level and item.level.slug == 'liceum' %} (poziom zaawansowany){% endif %}
20 <a href="{{ item.get_absolute_url }}">{{ item }}
21 {% if mark_level and item.level.slug == 'liceum' %} (poziom zaawansowany){% endif %}
28 {% if link_other_level %}
29 {% with other=lesson.get_other_level %}
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>