Skip to content

Instantly share code, notes, and snippets.

@flebel
Forked from dokterbob/admin.py
Last active June 27, 2023 09:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flebel/418d4eac306084259b4a4f1d71e043f2 to your computer and use it in GitHub Desktop.
Save flebel/418d4eac306084259b4a4f1d71e043f2 to your computer and use it in GitHub Desktop.
(Django2.0/Py3.6) InlineAdmin mixin limiting the selection of related items according to criteria which can depend on the current parent object being edited.
class LimitedAdminInlineMixin(object):
"""
InlineAdmin mixin limiting the selection of related items according to
criteria which can depend on the current parent object being edited.
A typical use case would be selecting a subset of related items from
other inlines, ie. images, to have some relation to other inlines.
Use as follows::
class MyInline(LimitedAdminInlineMixin, admin.TabularInline):
def get_filters(self, request, obj):
return (('<field_name>', dict(<filters>)),)
Here, <field_name> is the name of the FK field to be filtered and <filters>
is a dict of parameters as you would normally specify them in the filter()
method of QuerySets.
Modified from:
https://stackoverflow.com/a/5008984
https://gist.github.com/dokterbob/828117
"""
@staticmethod
def limit_inline_choices(formset, field, empty=False, **filters):
"""
This function fetches the queryset with available choices for a given
`field` and filters it based on the criteria specified in filters,
unless `empty=True`. In this case, no choices will be made available.
"""
assert field in formset.form.base_fields
qs = formset.form.base_fields[field].queryset
if empty:
formset.form.base_fields[field].queryset = qs.none()
else:
qs = qs.filter(**filters)
formset.form.base_fields[field].queryset = qs
def get_formset(self, request, obj=None, **kwargs):
"""
Make sure we can only select variations that relate to the current
item.
"""
formset = super(LimitedAdminInlineMixin, self).get_formset(request,
obj,
**kwargs)
inline_filters = self.get_filters(request, obj)
if inline_filters:
for (field, filters,) in inline_filters:
self.limit_inline_choices(formset, field, **filters)
return formset
@bvellacott
Copy link

Thank you! This should get added into the django base

@pkitsios-teka
Copy link

Nice and clean! Many thanks for sharing! Unfortunately I could not find any license attached to the code. Could you please add one?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment