cute rotating carousel
[edumed.git] / catalogue / templates / catalogue / snippets / section_box.html
1 {% for level, depths in lessons.items %}
2 <section class="section-level section-level-{{ level.slug }}">
3     {% spaceless %}
4     {% for depth, lesson_list in depths.items %}
5         <section class="section-depth section-depth-{{ depth }}">
6             {% if depth == 0 %}
7                 <h1>Lekcja syntetyczna</h1>
8             {% else %}
9                 <h1>Pełny kurs</h1>
10             {% endif %}
11             <ul class="section-lessons">
12                 {% for lesson in lesson_list %}
13                     <li class="section-lesson">
14                         <a href="{{ lesson.get_absolute_url }}">{{ lesson }}{% if depth == 0 %}
15                             (przegląd całego działu w 45 minut)
16                         {% endif %}</a>
17                     </li>
18                 {% endfor %}
19             </ul>
20         </section>
21     {% endfor %}
22     {% endspaceless %}
23 </section>
24 {% endfor %}