summaryrefslogtreecommitdiffstats
path: root/templates/module_show.html
blob: 8b2dda1646f101e1827f02ec068ba44265c5bf31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "layout.html" %}
{% block body %}
  <h3>{{module}}</h3>

  <p>
    <a href="{{url_for('study_index', study=study)}}">zurück zur Übersicht</a>
  </p>

  <ul>
  {% for year,files in entries %}
    <li>
      {{year}}
      <ul>
      {% for name,oid in files %}
        <li>
          <a href="{{url_for('study_show', study = study, oid=oid)}}">{{name}}</a>
        </li>
      {% endfor %}
      </ul>
    </li>
  {% endfor %}
  </ul>

{% endblock %}