summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'templates/group_list.html')
-rw-r--r--templates/group_list.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/group_list.html b/templates/group_list.html
new file mode 100644
index 0000000..325eec5
--- /dev/null
+++ b/templates/group_list.html
@@ -0,0 +1,20 @@
+{% extends "base.html" %}
+{% block title %}List of log groups{% endblock %}
+{% block body %}
+ <table>
+ <tr>
+ <th>hostname</th>
+ <th>group name</th>
+ <th>provider</th>
+ <th>date</th>
+ </tr>
+ {% for group in groups %}
+ <tr>
+ <td>{{ group.hostname }}</td>
+ <td>{{ group.name }}</td>
+ <td>{{ group.provider }}</td>
+ <td>{{ group.date }}</td>
+ </tr>
+ {% endfor %}
+ </table>
+{% endblock %}