summaryrefslogtreecommitdiffstats
path: root/templates/module_show.html
diff options
context:
space:
mode:
authorNico Geyso <nico.geyso@fu-berlin.de>2014-12-07 16:02:27 +0100
committerNico Geyso <nico.geyso@fu-berlin.de>2014-12-07 16:02:27 +0100
commitab487c574b6ac405a869528516bed55473e93c5f (patch)
tree51a8de9c4662fa3dcae87765430abeebfe7d89ad /templates/module_show.html
parentc4a267e9cf9073547063d60f7a49b093df0e4570 (diff)
downloadklausuren-ab487c574b6ac405a869528516bed55473e93c5f.tar.gz
klausuren-ab487c574b6ac405a869528516bed55473e93c5f.tar.bz2
klausuren-ab487c574b6ac405a869528516bed55473e93c5f.zip
Restructure project
Diffstat (limited to 'templates/module_show.html')
-rw-r--r--templates/module_show.html30
1 files changed, 0 insertions, 30 deletions
diff --git a/templates/module_show.html b/templates/module_show.html
deleted file mode 100644
index cbaec74..0000000
--- a/templates/module_show.html
+++ /dev/null
@@ -1,30 +0,0 @@
-{% macro render_module_list(module) %}
-<ul id="module-list">
-{% for year,files in module %}
- <li>
- {{year}}
- <ul>
- {% for name,oid in files %}
- <li>
- <a href="{{url_for('study_show', study = study, oid=oid, filename=name)}}">
- {{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="module-index">
- <h3>{{module}}</h3>
-
- {{ render_module_list(entries)}}
- </div>
-
-{% endblock %}