fnp
/
edumed.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a499a88ec7cc40eadb697b40fbcc13f886776508
[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 }}<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 %}