initial commit
[edumed.git] / catalogue / templates / catalogue / section_list.html
1 {% extends "base.html" %}
2 {% load catalogue_tags %}
3
4 {% block title %}Lekcje{% endblock %}
5
6 {% block body %}
7     <h1>Lekcje</h1>
8
9     {% for object in object_list %}
10         <h2>{{ object }} <a name="{{ object.slug }}" class="permalink"></a></h2>
11
12         {% section_box object %}
13     {% endfor %}
14
15 {% endblock %}