From 5c567070fc3a18ae08c7d4b5ffa9af5ae3a72e5e Mon Sep 17 00:00:00 2001 From: Antanas Uršulis Date: Fri, 2 Aug 2013 10:12:25 +0300 Subject: Simple file list template TODO: it should provide a link to file, instead of printing the path. --- templates/file_list.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 templates/file_list.html (limited to 'templates') 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 %} + + + + + + {% for file in files %} + + + + + {% endfor %} +
group idpath
{{ file.group_id }}{{ file.path }}
+{% endblock %} -- cgit v1.2.3-65-gdbad