summaryrefslogtreecommitdiffstats
path: root/templates/_files.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/_files.html')
-rw-r--r--templates/_files.html19
1 files changed, 0 insertions, 19 deletions
diff --git a/templates/_files.html b/templates/_files.html
deleted file mode 100644
index 0c0fe41..0000000
--- a/templates/_files.html
+++ /dev/null
@@ -1,19 +0,0 @@
- {% 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>
- {% if file[2] %}
- ({{file[2]|join(', ')}})
- {% endif %}
- </li>
- {% else %}
- <li><strong>no files uploaded</strong></li>
- {% endfor %}
- </ul>