-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Forms should have a set_queries
method
#145
Comments
Why |
Because there may be more than one query select field. |
#148 fixes this. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When a form uses
QuerySelectField
orQuerySelectMultipleField
, it may specify either aquery_factory
in the form class, or aquery
function in the form instance. The latter is used when the query must take context into account.As a pattern, we prefer query construction in the form itself rather than in the view (see #112). We do this by overriding
__init__
and settingself.field.query
after callingsuper
. This is a bit clumsy as it masks the form's calling pattern (as using*args, **kwargs
hides details frominspect
). The base class's__init__
should instead callself.set_queries()
and provide an empty function, which form classes can override to set queries, without needing to accept arbitrary parameters or callsuper
.The text was updated successfully, but these errors were encountered: