1 <section id="{{ level.slug }}" class="level" style="margin-left: 20em">
3 <section class="box level-toc" style="float: left; margin-left: -20em; width: 15em;">
4 <strong><a href="#{{ level.slug }}">{{ level }}</a></strong>
5 <ul class="link-list" style="list-style: none; padding: 0; margin: 0;">
6 {% if lessons.synthetic %}
7 <li><a href="#{{ level.slug }}_skrocony">Skrócony kurs</a></li>
9 {% if lessons.course %}
10 <li><a href="#{{ level.slug }}_pelny">Pełny kurs</a>
11 <ul style="list-style: none; padding: 0 0 0 1em; margin: 0;">
12 {% for section in lessons.course %}
13 <li><a href="#{{ level.slug }}_{{ section.slug}}">{{ section }}</a></li>
18 {% if lessons.project %}
19 <li><a href="#{{ level.slug }}_projekty">Projekty</a></li>
21 {% if lessons.appendix %}
22 <li><a href="#{{ level.slug }}_pozostale">Pozostałe materiały</a></li>
26 <li class="curriculumcourses"><a href="#{{ level.slug }}_podstawa">Według postawy programowej</a>
27 <ul style="list-style: none; padding: 0 0 0 1em; margin: 0;">
28 {% for course, lessons in courses %}
29 <li><a href="#{{ level.slug }}_{{ course.slug}}">{{ course }}</a></li>
36 <li class="curriculumcourses"><a href="#{{ level.slug }}_inne">Inne</a>
37 <ul style="list-style: none; padding: 0 0 0 1em; margin: 0;">
38 {% for item in added %}
39 <li><a href="#{{ level.slug }}_{{ item.slug }}">{{ item.title }}</a></li>
54 <section class="box-button button"><a href="{{ level.package.url }}" class="dl-button">Pobierz wszystkie lekcje</a></section>
55 <section class="button"><a href="{{ level.student_package.url }}" class="dl-button">Pobierz wszystkie lekcje w wersji dla ucznia</a></section>
57 {% if lessons.synthetic %}
58 <section id="{{ level.slug }}_skrocony">
59 <h1>Skrócony kurs</h1>
61 <p>Masz kilka godzin? Przeprowadź po jednej lekcji przeglądowej z każdego tematu.</p>
63 <ul class="link-list">
64 {% for lesson in lessons.synthetic %}
65 <li>{% include "catalogue/snippets/lesson_or_stub.html" %}</li>
72 {% if lessons.course %}
73 <section id="{{ level.slug }}_pelny">
76 <p>Masz więcej czasu? Zrealizuj kompletny program edukacji medialnej.</p>
78 {% for section, s_lessons in lessons.course.items %}
79 <section id="{{ level.slug }}_{{ section.slug}}">
80 <h1>{{ section }}</h1>
82 <ul class="link-list">
83 {% for lesson in s_lessons %}
84 <li>{% include "catalogue/snippets/lesson_or_stub.html" %}</li>
94 {% if lessons.project %}
95 <section id="{{ level.slug }}_projekty">
98 <p>Masz 4-6 tygodni? Zrealizuj jeden z projektów ze swoimi uczniami.</p>
100 <ul class="link-list">
101 {% for lesson in lessons.project %}
102 <li>{% include "catalogue/snippets/lesson_or_stub.html" %}</li>
110 <section id="{{ level.slug }}_podstawa">
111 <h1>Według podstawy programowej</h1>
113 {% for course, lessons in courses %}
114 <section id="{{ level.slug}}_{{ course.slug }}">
115 <h1>{{ course }}</h1>
117 {% if lessons.synthetic %}
119 <h1>Z kursu skróconego</h1>
120 <ul class="link-list">
121 {% for lesson in lessons.synthetic %}
122 <li>{% include "catalogue/snippets/lesson_or_stub.html" %}</li>
128 {% if lessons.course %}
130 <h1>Z kursu pełnego</h1>
131 <ul class="link-list">
132 {% for lesson in lessons.course %}
133 <li>{% include "catalogue/snippets/lesson_or_stub.html" %}</li>
139 {% if lessons.project %}
142 <ul class="link-list">
143 {% for lesson in lessons.project %}
144 <li>{% include "catalogue/snippets/lesson_or_stub.html" %}</li>
158 <section id="{{ level.slug }}_inne">
161 {% for item in added %}
162 <section id="{{ level.slug }}_{{ item.slug }}">
163 <h1>{{ item.title }}</h1>
165 <ul class="link-list">
166 {% for lesson in item.lessons %}
167 <li><a href="{{ lesson.get_absolute_url }}" title="{{ lesson.description }}">{{ lesson }}</a></li>