fixes #3287: minor styling fixes on main.
[edumed.git] / curriculum / templates / curriculum / snippets / curriculum.html
1 {% if currset %}
2     {% for what, types in currset.items %}
3         <li>
4             {{ what.0 }}, {{ what.1 }} poziom edukacyjny<br/>
5             {% for type, currs in types.items %}
6                 {{ type }}:<br>
7                 {% for curr in currs %}
8                     {{ curr.title }}<br>
9                 {% endfor %}
10             {% endfor %}
11         </li>
12     {% endfor %}
13 {% else %}
14     {% for identifier in identifiers %}
15         <li>{{ identifier }}</li>
16     {% endfor %}
17 {% endif %}