From a357e6a793bac249b0b28121c0681fd216153548 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Wed, 20 Dec 2017 13:27:44 -0500 Subject: [PATCH] adding registrations and event details headers adding headers to the events and registrations detail sections --- css/front.css | 4 +++ views/front/registrations/registration.html | 30 +++++++++++++++++---- 2 files changed, 29 insertions(+), 5 deletions(-) diff --git a/css/front.css b/css/front.css index 3a60d05..1dcb590 100644 --- a/css/front.css +++ b/css/front.css @@ -30,6 +30,10 @@ color: #008CBA; border-right: 1px solid white; } +.glm-reg-event-profile-details H4{ + color: #363636; + font-weight: bold; +} #glm-reg-detail-map-button:hover{ cursor: pointer; } diff --git a/views/front/registrations/registration.html b/views/front/registrations/registration.html index 04015a0..baa84cc 100644 --- a/views/front/registrations/registration.html +++ b/views/front/registrations/registration.html @@ -39,6 +39,10 @@ {else}
{$regEvent.first_datetime.timestamp|date_format:"%l:%M %p"}
{/if} + + {if $regEvent.eventCost} +
{$regEvent.eventCost}
+ {/if} {if $regEvent.locations.name || $regEvent.locations.address}
{$regEvent.locations.name} @@ -48,8 +52,8 @@
{if $regEvent.locations.city.name}{$regEvent.locations.city.name},{/if}{$regEvent.locations.state.name} {$regEvent.locations.zip}
{/if} + {if $regEvent.locations.lat && $regEvent.locations.lon} -
(map loads here)
@@ -63,11 +67,27 @@
- + + {if $regEvent.eventDescr} +
+

Event Description

+ {$regEvent.eventDescr} +
+ {/if} + {if $regEvent.descr} +
+

Registration Details

+ {$regEvent.descr} +
+ {/if} + {if $regEvent.terms} +
+

Terms and Condtions

+ {$regEvent.terms} +
+ {/if} + {literal} - <% if ( descr ) { %>
<%= descr %>
<% } %> - <% if ( terms ) { %>
<%= terms %>
<% } %> -
<% if ( this.getClassCount() == 0 ) { %>

Registrations not available at this time.

-- 2.17.1