Templates
Custom fields and Status lists
custom fields you can include the information from custom fields in a template these can be accessed through the {{ customfields }} placeholder this placeholder allows you to iterate through a list of all custom fields on the card each custom field has two properties key value the property key contains the key of the custom field the value property contains the value what is in value depends on the type of the custom field type value text a text value text area a (long) text value (condider using the br helper) numeric a number (integer) date picker a date date/time picker a date wih a time checkbox true or false (consider using the #if helper) financial a financial number select a list of texts, zero or one value multiselect a list of texts, zero or multiple value to find the value for one specific custom field, use the #find on key helper {{#find on key customfields 'accreditation partner name' }} {{value}} {{/find on key}} {{#find on key customfields 'accreditation guest bio' }} {br {value}} {{/find on key}} {{#find on key customfields 'accreditation first visit festival' }} {{format value value 'dd mm yy'}} {{/find on key}} {{#find on key customfields 'accreditation gender' }} {{#each value}} {{this}} {{/each}} {{/find on key}} {{#find on key customfields 'accreditation competencies' }} {{#each value}} {{this}}{{#unless @last}}, {{/unless}} {{/each}} {{/find on key}} status list values you can include the selected values of status lists in a template these can be accessed through the {{ statusvalues}} placeholder this placeholder allows you to iterate through a list of all status lists on the card (in the header or in a section each status list has three properties key value the property key contains the key of the status list valid values are header1, header2, header3 or the key of a section in which the status list is placed, e g general the value property contains information of the checked status list boxes {{value all}} a list of all checked status list boxes {{value highest}} the highest box checked {{value latest}} the most recent checked box to find the value for one specific status list, use the #find on key helper {{#each statusvalues }} {{key}} {{/each}} {{#find on key statusvalues 'header1' }} {{#each value all}} {{label}} {{checkedby}} {{format value checkedon 'dd mm yy hh\ mm'}} {{/each}} {{/find on key}} {{#find on key statusvalues 'header1' }} {{#with value highest}} {{label}} {{checkedby}} {{format value checkedon 'dd mm yy hh\ mm'}} {{/with}} {{/find on key}} {{#find on key statusvalues 'header1' }} {{#with value latest}} {{label}} {{checkedby}} {{format value checkedon 'dd mm yy hh\ mm'}} {{/with}} {{/find on key}}