On Jul 26, 9:56 am, django user <djangou...@gmail.com> wrote: > How would I make a formset for exactly the # of images I have in a > queryset?
Just pass the queryset into the formset instantiation, as described on the page I referenced: >>> from django.forms.models import modelformset_factory >>> AuthorFormSet = modelformset_factory(Author, extra=0) >>> formset = >>> AuthorFormSet(queryset=Author.objects.filter(name__startswith='O')) -- DR. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---