Merge branch 'leveling'
[edumed.git] / catalogue / templates / catalogue / snippets / section_box.html
diff --git a/catalogue/templates/catalogue/snippets/section_box.html b/catalogue/templates/catalogue/snippets/section_box.html
deleted file mode 100755 (executable)
index 53477cf..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-{% for level, depths in lessons.items %}
-<section class="section-level section-level-{{ level.slug }}">
-    {% spaceless %}
-    {% for depth, lesson_list in depths.items %}
-        <section class="section-depth section-depth-{{ depth }}">
-            {% if depth == 0 %}
-                <h1>Lekcja syntetyczna</h1>
-            {% else %}
-                <h1>Pełny kurs</h1>
-            {% endif %}
-            <ul class="section-lessons">
-                {% for lesson in lesson_list %}
-                    <li class="section-lesson">
-                        <a href="{{ lesson.get_absolute_url }}">{{ lesson }}{% if depth == 0 %}
-                            (przegląd całego działu w 45 minut)
-                        {% endif %}</a>
-                    </li>
-                {% endfor %}
-            </ul>
-        </section>
-    {% endfor %}
-    {% endspaceless %}
-</section>
-{% endfor %}