1 {% load url from future %}
4 <a href="{{ root.get_absolute_url }}">{{ root }}</a>
5 {% elif lesson.type == 'synthetic' %}
6 <a href="{% url 'catalogue_lessons' %}">Lekcje syntetyczne ze wszystkich tematów</a>
8 <a href="{% url 'catalogue_lessons' %}">Inne</a>
13 {% for item in siblings %}
15 {% if item == lesson %}
16 <strong>{{ item }}</strong>
17 {% if mark_level and item.level.slug == 'liceum' %} (poziom zaawansowany){% endif %}
19 <a href="{{ item.get_absolute_url }}">{{ item }}
20 {% if mark_level and item.level.slug == 'liceum' %} (poziom zaawansowany){% endif %}
27 {% with other=lesson.get_other_level %}
29 <p>Ten temat jest dostępny również na
30 <a href="{% url 'catalogue_lessons' %}#{{ lesson.section.slug }}_{{ other.slug }}">poziomie
31 {% if other.slug == 'liceum' %}zaawansowanym{% else %}podstawowym{% endif %}</a>.</p>