summaryrefslogtreecommitdiffstats
path: root/templates/module_show.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/module_show.html')
-rw-r--r--templates/module_show.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/module_show.html b/templates/module_show.html
new file mode 100644
index 0000000..940647d
--- /dev/null
+++ b/templates/module_show.html
@@ -0,0 +1,20 @@
+{% extends "layout.html" %}
+{% block body %}
+ <h2></h2>
+
+ <ul>
+ {% for year,files in module %}
+ <li>
+ {{year}}
+ <ul>
+ {% for name,oid in files %}
+ <li>
+ <a href="{{url_for('show', oid=oid)}}">{{name}}</a>
+ </li>
+ {% endfor %}
+ </ul>
+ </li>
+ {% endfor %}
+ </ul>
+
+{% endblock %}