2 {% for level, types in lessons.items %}
3 {% if level.slug == "liceum" %}
4 <p><strong>{{section.title}}</strong>: poziom zaawansowany
5 <span class="section-links"><a href="#top">wróć do spisu treści</a></span>
8 <section id="{{ section.slug }}_{{ level.slug }}" class="section-level section-level-{{ level.slug }}">
10 <div class='sections-row'>
11 {% for lesson_type, lesson_list in types.items %}
12 {% if lesson_type == 'project' %}
13 </div><div class='sections-row'>
15 <section class="section-type section-type-{{ lesson_type }}">
16 {% if lesson_type == 'synthetic' %}
17 {% if section.image %}
18 {% thumbnail section.image "120x160" as im %}
19 <a class="image" href="{{ section.image.url }}">
20 <img src="{{ im.url }}" />
24 <h1>Lekcja syntetyczna</h1>
25 {% elif lesson_type == 'project' %}
31 <ul class="section-lessons link-list">
32 {% for lesson in lesson_list %}
33 <li class="section-lesson">
35 <a href="{{ lesson.get_absolute_url }}">{{ lesson }}{% if lesson_type == 'synthetic' %}
36 <br/>(przegląd całego tematu w 45 minut)
39 {{ lesson }} <em>(w przygotowaniu)</em>
45 <p>(W przygotowaniu)</p>