summaryrefslogtreecommitdiffstats
path: root/templates/module_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/module_list.html')
-rw-r--r--templates/module_list.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/module_list.html b/templates/module_list.html
new file mode 100644
index 0000000..5cb155a
--- /dev/null
+++ b/templates/module_list.html
@@ -0,0 +1,15 @@
+{% extends "layout.html" %}
+{% block body %}
+ <h2>Klausuren</h2>
+
+ <ul>
+ {% for module in modules %}
+ <li>
+ <a href="{{url_for('list', module=module)}}">{{module}}</a>
+ </li>
+ {% else %}
+ <li>Keine Klausuren bisher hochgeladen!</li>
+ {% endfor %}
+ </ul>
+
+{% endblock %}