Skip to content
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

Closed
jace opened this issue Mar 14, 2017 · 4 comments
Closed

Forms should have a set_queries method #145

jace opened this issue Mar 14, 2017 · 4 comments

Comments

@jace
Copy link
Member

jace commented Mar 14, 2017

When a form uses QuerySelectField or QuerySelectMultipleField, it may specify either a query_factory in the form class, or a query 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 setting self.field.query after calling super. This is a bit clumsy as it masks the form's calling pattern (as using *args, **kwargs hides details from inspect). The base class's __init__ should instead call self.set_queries() and provide an empty function, which form classes can override to set queries, without needing to accept arbitrary parameters or call super.

@shreyas-satish
Copy link
Contributor

shreyas-satish commented Mar 15, 2017

Why set_queries() and not set_query()?

@jace
Copy link
Member Author

jace commented Mar 15, 2017

Because there may be more than one query select field.

@shreyas-satish
Copy link
Contributor

#148

@shreyas-satish
Copy link
Contributor

#148 fixes this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants