initial commit
[edumed.git] / curriculum / templates / curriculum / competence_detail.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ object }}{% endblock %}
4
5 {% block body %}
6 <h1>{{ object }}</h1>
7
8 {% for cl in object.competencelevel_set.all %}
9     <h2>{{ cl }}</h2>
10     {{ cl.description }}
11 {% endfor %}
12
13 {% endblock %}