2👍
✅
In the template for the form you can reference the value of the field directly like so:
{{ form.id.value }}
{{ form.name.value }}
{{ form.location.value }}
{{ form.owner }}
The owner field will be rendered as an input and the others will be rendered as the value.
Source:stackexchange.com