Display Repeat Group Entries In Email And PDF Templates

This guide includes the basic HTML examples of displaying repeat group entry field values in Email and PDF templates.

The following guide covers the basics of displaying repeat group entries in PDF templates - https://support.formyoula.com/knowledgebase/articles/1181851-display-repeat-group-entries-in-custom-pdf-templat

Please "Enable Advanced Templating", under the PDF Page Settings on the PDF editor.

image

Using the "each" function where 3767-3a2c-a08f is the repeat group field Id.

<tbody>
	<!-- {{#each 3767-3a2c-a08f}} -->
		<!-- {{#if 9031-510c-fccd}} -->
			<tr>
				<td>Test : {{3b6d-2516-08ad}}</td>
			</tr>
		<!-- {{/if}} -->
	<!-- {{/each}} -->
</tbody>

Using the "formyoula_repeat_c1ee-4698-ae18" function where "formyoula_repeat_" is followed by the repeat group field Id.

<tbody>
	<!-- {{formyoula_repeat_c1ee-4698-ae18}} -->
		<!-- {{#compare 9031-510c-fccd true operator='=='}} -->
			<tr>
				<td>Test: {{3b6d-2516-08ad}}</td>
			</tr>
		<!-- {{/compare}} -->
	<!-- {{formyoula_repeat_c1ee-4698-ae18}} -->
</tbody>

For any questions, please contact us - [email protected] or the Formyoula in-app chat 🙂