From 82968f206a07ef866d315467f34f6854c8d4da32 Mon Sep 17 00:00:00 2001 From: Chuck Scott Date: Thu, 26 Oct 2017 12:21:27 -0400 Subject: [PATCH] List page now checking to see if there's any available events. --- views/front/registrations/list.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/views/front/registrations/list.html b/views/front/registrations/list.html index 8542400..5e55926 100644 --- a/views/front/registrations/list.html +++ b/views/front/registrations/list.html @@ -1,5 +1,6 @@ {include file='front/registrations/header.html'}
+{if $haveRegEvents} {foreach $regEvents as $event}

{$event.event_name}

@@ -7,5 +8,8 @@
{/foreach} +{else} +

Sorry, no events are available for registration at this time.

+{/if}
-- 2.17.1