official curriculum
[edumed.git] / curriculum / templates / curriculum / snippets / curriculum.html
diff --git a/curriculum/templates/curriculum/snippets/curriculum.html b/curriculum/templates/curriculum/snippets/curriculum.html
new file mode 100755 (executable)
index 0000000..ea4f3fb
--- /dev/null
@@ -0,0 +1,17 @@
+{% if currset %}
+    {% for what, types in currset.items %}
+        <li>
+            {{ what.0 }}, {{ what.1 }} poziom edukacyjny<br/>
+            {% for type, currs in types.items %}
+                {{ type }}:<br>
+                {% for curr in currs %}
+                    {{ curr.title }}<br>
+                {% endfor %}
+            {% endfor %}
+        </li>
+    {% endfor %}
+{% else %}
+    {% for identifier in identifiers %}
+        <li>{{ identifier }}</li>
+    {% endfor %}
+{% endif %}