Importing whole sections.
[edumed.git] / catalogue / templates / catalogue / snippets / section_box.html
1 {% for level, types in lessons.items %}
2 {% if level.slug == "liceum" %}
3     <p>Poziom zaawansowany
4         <span class="section-links"><a href="#top">wróć do spisu treści</a></span>
5     </p>
6 {% endif %}
7 <section class="section-level section-level-{{ level.slug }}">
8     {% spaceless %}
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>
13             {% else %}
14                 <h1>Pełny kurs</h1>
15             {% endif %}
16             <ul class="section-lessons">
17                 {% for lesson in lesson_list %}
18                     <li class="section-lesson">
19                         <a href="{{ lesson.get_absolute_url }}">{{ lesson }}{% if depth == 'synthetic' %}
20                             (przegląd całego działu w 45 minut)
21                         {% endif %}</a>
22                     </li>
23                 {% endfor %}
24             </ul>
25         </section>
26     {% endfor %}
27     {% endspaceless %}
28 </section>
29 {% endfor %}