#19991: Introduce `saved_forms` property to `BaseModelFormSet`
-----------------------------+--------------------
Reporter: coolRR | Owner: nobody
Type: New feature | Status: new
Component: Forms | Version: master
Severity: Normal | Keywords:
Triage Stage: Unreviewed | Has patch: 0
Easy pickings: 0 | UI/UX: 0
-----------------------------+--------------------
Hi,
Here's something that I use in my code and I'm thinking it might be useful
to include in Django by default:
{{{
@property
def saved_forms(self):
if not self.is_bound:
return ()
return tuple(form for form in self.forms if (form.instance.pk is not
None))
}}}
(This is a property of `BaseModelFormSet`.)
This allows you to access the forms in the formset that were saved.
What do you think? Would this be useful to add to Django?
(I can easily make this code into a patch if you want.)
--
Ticket URL: <https://code.djangoproject.com/ticket/19991>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.