summaryrefslogtreecommitdiffstats
path: root/templates/_files.html
blob: 94a069d1bb0d8b6b568dba78ba3a086f1b0f6328 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
  {% if tags %}
    <h2>Files for {{tags|join(', ')}}</h2>
  {% else %}
    <h2>All uploaded files</h2>
  {% endif %}
    <ul>
    {% for file in files %}
      <li><a href="{{url_for('show', oid=file[1])}}">{{ file[0] }}</a></li>
    {% else %}
      <li><strong>no files uploaded</strong></li>
    {% endfor %}
    </ul>