summaryrefslogtreecommitdiffstats
path: root/app/templates/exams.html
diff options
context:
space:
mode:
authorNico Geyso <nico.geyso@fu-berlin.de>2014-12-09 23:59:54 +0100
committerNico Geyso <nico.geyso@fu-berlin.de>2014-12-09 23:59:54 +0100
commit274d1790239f52440137cc922018a87af32a4ab7 (patch)
tree43149197b724f95af49c483194f2498b13f10ae2 /app/templates/exams.html
parent79788b3590aba6384611a2c29012bbd821c290ee (diff)
downloadklausuren-274d1790239f52440137cc922018a87af32a4ab7.tar.gz
klausuren-274d1790239f52440137cc922018a87af32a4ab7.tar.bz2
klausuren-274d1790239f52440137cc922018a87af32a4ab7.zip
Refactoring
Diffstat (limited to 'app/templates/exams.html')
-rw-r--r--app/templates/exams.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/templates/exams.html b/app/templates/exams.html
new file mode 100644
index 0000000..7e4af54
--- /dev/null
+++ b/app/templates/exams.html
@@ -0,0 +1,29 @@
+{% macro render_courses_list(courses, entries) %}
+<ul>
+{% for year,files in entries %}
+ <li>
+ {{year}}
+ <ul>
+ {% for name, path in files %}
+ <li>
+ <a href="{{url_for('static', filename = path)}}">
+ {{name|truncate(40,True)}}
+ </a>
+ </li>
+ {% endfor %}
+ </ul>
+ </li>
+{% else %}
+ <li>Keine Einträge bisher</li>
+{% endfor %}
+</ul>
+{% endmacro %}
+
+{% extends "_layout.html" %}
+{% block body %}
+ <div id="exams">
+ <h3>{{courses}}</h3>
+
+ {{ render_courses_list(courses, entries)}}
+ </div>
+{% endblock %}