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?

link|improve this question
Have you tried {{ form.instance }}? – rebus Sep 4 '10 at 12:49
feedback

1 Answer

up vote 2 down vote accepted
MyForm = inlineformset_factory(Foo, Bar)
f = MyForm(instance=Foo.objects.all()[0])
f.instance
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.