From 52cae979fe76b11d10f75c4932b7514037dd3071 Mon Sep 17 00:00:00 2001 From: Jiri Vrany Date: Mon, 15 Jul 2024 12:59:10 +0200 Subject: [PATCH] quickfix: org adres ranges formatting in template --- flowapp/templates/pages/orgs.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/flowapp/templates/pages/orgs.html b/flowapp/templates/pages/orgs.html index 3184160..9d2b2cb 100644 --- a/flowapp/templates/pages/orgs.html +++ b/flowapp/templates/pages/orgs.html @@ -4,7 +4,7 @@ - + {% for org in orgs %} @@ -12,7 +12,11 @@
NameAdress RangeAdress Ranges action
{{ org.name }} {% set rows = org.arange.split() %} - {{ rows|join("
") }} +
    + {% for row in rows %} +
  • {{ row }}
  • + {% endfor %} +