You are viewing an older version of the Formie documentation (2.x).
View the latest version (3.x) →
Template Guides
Selecting Forms
Formie provides a Form Element field for you to use in other elements in the control panel. For example, you might like to add a Formie form field to an entry, allowing content authors to select a form to be shown on the page.
When using this field's value, you're dealing with a Form Query.
{% set form = entry.myFormFieldHandle.one() %}
{{ craft.formie.renderForm(form) }}Selecting Submissions
Formie provides a Submission Element field for you to use in other elements in the control panel. For example, you might like to add a Formie form submission field to an entry, allowing content authors to select a form submission to be shown on the page.
When using this field's value, you're dealing with a Submission Query.
{% set submission = entry.mySubmissionFieldHandle.one() %}
{{ submission.title }}
Last updated: May 2, 2026, 3:17:19 PM