1 {% for level, types in lessons.items %}
2 {% if level.slug == "liceum" %}
3 <p><strong>{{section.title}}</strong>: poziom zaawansowany
4 <span class="section-links"><a href="#top">wróć do spisu treści</a></span>
7 <section id="{{ section.slug }}_{{ level.slug }}" class="section-level section-level-{{ level.slug }}">
9 {% for lesson_type, lesson_list in types.items %}
10 <section class="section-type section-type-{{ lesson_type }}">
11 {% if lesson_type == 'synthetic' %}
12 <h1>Lekcja syntetyczna</h1>
17 <ul class="section-lessons link-list">
18 {% for lesson in lesson_list %}
19 <li class="section-lesson">
21 <a href="{{ lesson.get_absolute_url }}">{{ lesson }}{% if lesson_type == 'synthetic' %}
22 <br/>(przegląd całego tematu w 45 minut)
25 {{ lesson }} <em>(w przygotowaniu)</em>
31 <p>(W przygotowaniu)</p>