From 93817a44f65023ec8993b6c6918563f5a1de1eee Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Tue, 5 Apr 2016 17:15:17 -0400 Subject: [PATCH] only output cost if not free --- 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 8cf7067..7640db9 100644 --- a/views/front/events/detail.html +++ b/views/front/events/detail.html @@ -40,7 +40,7 @@ {$event.locations.address}
{$event.locations.city.name}, {$event.locations.state.value} {$event.locations.zip} - {if $event.cost} + {if $event.cost && !$event.free.value}
Cost
{$event.cost}
{/if} {if $event.free.value} -- 2.17.1