-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
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
Add support for limit_choices_to on related fields. #1843
Add support for limit_choices_to on related fields. #1843
Conversation
@@ -846,6 +843,9 @@ def get_related_field(self, model_field, related_model, to_many): | |||
if model_field.help_text is not None: | |||
kwargs['help_text'] = model_field.help_text | |||
|
|||
if model_field.rel.limit_choices_to: | |||
kwargs['limit_choices_to'] = model_field.rel.limit_choices_to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not clear about whether it should be related_model
instead of model_field.rel
here. Thoughts ?
This PR is not rebasing easily. Sorry for the long turn-around time. |
Not a problem, still on my radar so will get to it myself too if you don't first. Dropping the 3.3.0 milestone, but mostly just because there's no reason it can't be before then. |
Thanks @tomchristie . I ended up in rebase hell trying to rebase this. A lot of the surrounding code has changed since it was originally written. I think I'm going to step back from this feature for now as I don't have much time to put towards things. Feel free to take it an run with it if you see fit. |
@pipermerriam I would like to take charge of this change if you step back. |
It's all yours. My focus is currently elsewhere On Sun, Dec 20, 2015, 12:47 AM Asif Saifuddin Auvi [email protected]
|
@tomchristie is the method & approach ok? I can fix the conflicts if that's all that's needed. |
@mishu- Seems broadly right yup, there'll probably need to be some more thorough review following the conflict being resolved, but the general approach is 👌. |
oi, things changed.. as in.. completely changed
…On Mon, Mar 6, 2017 at 12:28 PM, Tom Christie ***@***.***> wrote:
@mishu- <https://github.com/mishu-> Seems broadly right yup, there'll
probably need to be some more thorough review following the conflict being
resolved, but the general approach is 👌.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1843 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAlUZe0szTDyv_8JpHrZ0XpPQy1p4nFUks5ri9_BgaJpZM4CfS78>
.
--
Mihai Oprea
University of Pennsylvania, Class of 2009
School of Engineering and Applied Sciences
Masters of Science and Engineering in Computer and Information Science
Bachelor of Science and Engineering in Computer and Information Science
RO: +40 (72) 000 2704
|
yes I also got that while tried to takeover |
That's likely, however, with #3605 things may be easier. |
Closing this off as stale. |
Refs #1811.
What is the problem / feature ?
Serializer fields representing relationships did not support or respect the
limit_choices_to
option as introduced from django'sForeignKey
field.limit_choices_to
#1811How did it get fixed / implemented ?
limit_choices_to
torest_framework.relations.RelatedField
How can someone test / see it ?
Test coverage, as well as creating a related field using the
limit_choices_to
argument and seeing that the resulting queryset used for the field is correctly filtered.Here is a cute animal picture for your troubles...