Entries Tag
The forms entries tag allows you to display form submissions on the frontend of the website. See the entry tag section for a full list of parameters and variables.
The field tag pair
The {field}/{/field}
tag pair allows you to quickly and concisely loop through all of the fields in a given form:
{exp:forms:entries form_name="contact_form"}
<h3>Submitted {forms:date format="%m/%d/%Y"} by member id: {forms:member_id}</h3>
{forms:fields}
{forms:field_label}: {forms:field}<br>
{/forms:fields}
{/exp:forms:entries}
Individual field variables
For more precise control over the display of field submission, all assigned fields can also be output using the single variable format. In the example below, we're showing 3 fields, using their field shortnames.
{exp:forms:entries form_name="contact_form"}
<h3>Submitted {forms:date format="%m/%d/%Y"} by member id: {forms:member_id}</h3>
Selected location {forms:field:location_option}
Next available date: {forms:field:available_date}
Home address: {forms:field:home_address}
{/exp:forms:entries}