summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'templates/file_list.html')
-rw-r--r--templates/file_list.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/file_list.html b/templates/file_list.html
new file mode 100644
index 0000000..8980776
--- /dev/null
+++ b/templates/file_list.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+{% block title %}List of log files{% endblock %}
+{% block body %}
+ <table>
+ <tr>
+ <th>group id</th>
+ <th>path</th>
+ </tr>
+ {% for file in files %}
+ <tr>
+ <td>{{ file.group_id }}</td>
+ <td>{{ file.path }}</td>
+ </tr>
+ {% endfor %}
+ </table>
+{% endblock %}