From e9ea11c5332668af16c0497bf2b578433b05b32f Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Wed, 28 Oct 2020 16:19:38 +0000 Subject: List by country and added to map --- bh20simplewebuploader/templates/list.html | 42 +++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 bh20simplewebuploader/templates/list.html (limited to 'bh20simplewebuploader/templates') diff --git a/bh20simplewebuploader/templates/list.html b/bh20simplewebuploader/templates/list.html new file mode 100644 index 0000000..d50a045 --- /dev/null +++ b/bh20simplewebuploader/templates/list.html @@ -0,0 +1,42 @@ + + + {% include 'header.html' %} + + {% include 'banner.html' %} + {% include 'menu.html' %} + +
+ +

{{id}}

+ +
+
+
+ {% for row in l: %} +
+
+ {% for col in h: %} +
+ {% if col == 'name': %} + {{ row[col]['value'] }} + {% else %} + {{ row[col]['value'] }} + {% endif %} +
+ {% endfor %} +
+
+ {% endfor %} +
+
+ +
+ + {% include 'footer.html' %} + + + + + -- cgit v1.2.3