From 31a731c1b8c8296eff82add9b3f58cbdf6bbebeb Mon Sep 17 00:00:00 2001 From: mcbloch Date: Sat, 6 Apr 2019 19:05:41 +0200 Subject: [PATCH] do not query osm for 'None' locations --- app/templates/maps.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app/templates/maps.html b/app/templates/maps.html index da45976..88077fe 100644 --- a/app/templates/maps.html +++ b/app/templates/maps.html @@ -23,13 +23,16 @@ let locations = []; let loc = {}; - {% for loc in locations -%} +{% for loc in locations -%} + {% if loc.address %} loc = { "address": "{{loc.address}}", "name": "{{loc.name}}" }; - locations.push(loc); - {%- endfor %} + locations.push(loc); + + {% endif %} +{%- endfor %} loadmap(locations);