mirror of
https://github.com/django/django.git
synced 2025-07-04 17:59:13 +00:00
newforms-admin: Fixed #5199 -- Corrected is_bound logic for formsets. Well spotted, David Blewett <david@dawninglight.net>.
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@5931 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
549198b714
commit
0ae4e102dc
1
AUTHORS
1
AUTHORS
@ -62,6 +62,7 @@ answer newbie questions, and generally made Django that much better:
|
||||
Ben <afternoon@uk2.net>
|
||||
Paul Bissex <http://e-scribe.com/>
|
||||
Simon Blanchard
|
||||
David Blewett <david@dawninglight.net>
|
||||
Matt Boersma <ogghead@gmail.com>
|
||||
boobsd@gmail.com
|
||||
Andrew Brehaut <http://brehaut.net/blog>
|
||||
|
@ -21,7 +21,7 @@ class BaseFormSet(object):
|
||||
"""A collection of instances of the same Form class."""
|
||||
|
||||
def __init__(self, data=None, files=None, auto_id='id_%s', prefix=None, initial=None):
|
||||
self.is_bound = data is not None and files is not None
|
||||
self.is_bound = data is not None or files is not None
|
||||
self.prefix = prefix or 'form'
|
||||
self.auto_id = auto_id
|
||||
self.data = data
|
||||
|
Loading…
x
Reference in New Issue
Block a user