From 38a279b88f40e8a06910db9e01490985c8846c77 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Fri, 29 Dec 2017 16:29:52 -0500 Subject: [PATCH] wrapping location details in the reg list in a conditional for the icons icons showing even if there is no reg event data --- views/front/registrations/list.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/views/front/registrations/list.html b/views/front/registrations/list.html index b715458..9d8f877 100644 --- a/views/front/registrations/list.html +++ b/views/front/registrations/list.html @@ -109,12 +109,12 @@ {/if} - {if $event.hide_address.name == 'No'} -
- {if !$event.use_member_location.value && isset($event.locations) && ($event.locations.name || $event.locations.address)} - {if $event.locations.name}{$event.locations.name}
{/if} - {/if} -
+ {if $event.hide_address.name == 'No'} + {if !$event.use_member_location.value && isset($event.locations) && ($event.locations.name || $event.locations.address)} +
+ {if $event.locations.name}{$event.locations.name}
{/if} +
+ {/if} {/if} -- 2.17.1