{* +--------------------------------------------------------------------+ | Copyright CiviCRM LLC. All rights reserved. | | | | This work is published under the GNU AGPLv3 license with some | | permitted exceptions and without any warranty. For full license | | and copyright information, see https://civicrm.org/licensing | +--------------------------------------------------------------------+ *} {* Block to display upcoming events. *} {* You can add the following additional event elements to this tpl as needed: $ev.end_date, $ev.location, $ev.description, $ev.contact_email *} {* Change truncate:80 to a larger or smaller value to show more or less of the summary. Remove it to show complete summary. *}
{if $eventBlock} {foreach from=$eventBlock item=ev}

{$ev.title}
{$ev.start_date|truncate:10:""|crmDate}
{assign var=evSummary value=$ev.summary|truncate:80:""} {$evSummary}{if $ev.summary|count_characters:true GT 80} ({ts}more{/ts}...){/if}

{/foreach} {else}

{ts}There are no upcoming events.{/ts}

{/if}