fnp
/
edumed.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
verbose curriculum levels in model
[edumed.git]
/
curriculum
/
templates
/
curriculum
/
competence_detail.html
1
{% extends base_template %}
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|linebreaksbr }}
11
{% endfor %}
12
13
{% endblock %}