1👍
✅
1👍
Looks like you’re looking for the instance
attribute, which is attached to each form in a formset:
{% for picture_form in picture_formset %}
{% if picture_form.instance %}
<img src="{{ picture_form.instance.image.url }}" />
{% endif %}
{{ picture_form.image }}
{% endfor %}
Source:stackexchange.com