From 8d3e669e1513cdf61dc48c1d008c2067625187f3 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Mon, 24 Apr 2017 14:55:34 -0400 Subject: [PATCH] Show map only if they have an address. Some events are getting a default lat lon but don't have an address.. --- views/front/events/detail.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/front/events/detail.html b/views/front/events/detail.html index ff9e54e..267f39b 100644 --- a/views/front/events/detail.html +++ b/views/front/events/detail.html @@ -24,7 +24,7 @@
{if $event.locations}
- {if $event.locations.lat} + {if $event.locations.lat && $event.locations.address}
map...
Loading...
-- 2.17.1