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