[Answered ]-List objects in rows with one editable field (Model formset)

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.

Leave a comment