My ultimate goal here is to save Action modelforms for a given website (the foreign key). After form validation, I then want to sum the points for all the individual Actions and confirm that it's below a certain threshold (100 points) before I save the Actions. If the total exceeds 100, I'll raise a ValidationError.

My issue here is that I'm receiving the following error message:

"'ActionFormFormSet' object is not iterable"

The instances exist, so the issue seems to be iterating over this particular object. In the official documentation, there's an example that iterates over a modelformset in this exact fashion. However, the modelformset is populated by a queryset, whereas the inlineformset is not explicitly populated in the same way(maybe implicitly, I don't know).

Can I just not iterate over this object? What should I do here?

Thanks

 ActionFormSet=inlineformset_factory(Website, Action, extra=1, can_delete=True)
 if request.method=='POST':
     action_formset=ActionFormSet(request.POST, instance=website,prefix="actions")
     if action_formset.is_valid():

        #After validating the surveys, I need to make sure total points<100
        for form in action_formset:
            pass
        action_formset.save()
link|improve this question

79% accept rate
feedback

2 Answers

up vote 0 down vote accepted

First save the formset then iterate over the objects

forms = action_formset.save( commit = False)

now iterate over the forms by:

for form in forms:
    # do something
link|improve this answer
feedback

You might be using an older version of django. The formsets are only iterable in 1.3+ I believe. This might work:

for form in action_formset.forms:
    pass
action_formset.save()
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.