I have created a formset from a model that has an ImageField inside it. Now when editing the formset I would like to show the image next to the other fields in the template so the user can see what images they have uploaded.
From what I understand their is no simple way of saying:
{% for form in model_formset %}
{{form.model}}
...
{% endfor %}
or is their?
1 Answer