summaryrefslogtreecommitdiff
path: root/templates/viewlog.html
diff options
context:
space:
mode:
authorWillem Renes <wrenes@raudkembingur.nl>2021-05-12 00:32:14 +0200
committerWillem Renes <wrenes@raudkembingur.nl>2021-05-12 00:32:14 +0200
commitd0f08ed8699a2eda867bdab7c89628132bf90a3e (patch)
treed04324a4b23bd2940e74b735cb51c475a1cecf94 /templates/viewlog.html
parentf26f201416c0467bccef59a6336af56fc0f3e1ac (diff)
downloadvsearchweb-d0f08ed8699a2eda867bdab7c89628132bf90a3e.tar.gz
vsearchweb-d0f08ed8699a2eda867bdab7c89628132bf90a3e.zip
adding the initial files
Diffstat (limited to 'templates/viewlog.html')
-rw-r--r--templates/viewlog.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/viewlog.html b/templates/viewlog.html
new file mode 100644
index 0000000..8a47ccc
--- /dev/null
+++ b/templates/viewlog.html
@@ -0,0 +1,22 @@
+{% extends 'base.html' %}
+
+{% block body %}
+
+<h2>{{ the_title }}</h2>
+
+<table>
+ <tr>
+ {% for row_title in the_row_titles %}
+ <th>{{row_title}}</th>
+ {% endfor %}
+ </tr>
+ {% for log_row in the_data %}
+ <tr>
+ {% for item in log_row %}
+ <td>{{item}}</td>
+ {% endfor %}
+ </tr>
+ {% endfor %}
+</table>
+
+{% endblock %}