Filtering foreignkey fields in django admin

1
2
3
4
5
6
7
8
class MyAdmin(admin.ModelAdmin):
    def get_form(self, request, obj=None, **kwargs):
        form = super(MyAdmin,self).get_form(self,request, obj,**kwargs)
        # form class is created per request by modelform_factory function
        # so it's safe to modify
        #we modify the the queryset
        form.base_fields['foreign_key_field].queryset = form.base_fields['foreign_key_field].queryset.filter(user=request.user)
        return form

More like this

  1. ForeignKey filterspec by luc_j 1 year, 8 months ago
  2. Changelist filter by ForeignKey by overclocked 1 year, 6 months ago
  3. Limit ForeignKey filter values to those that have a relationship with current model by overclocked 1 year, 6 months ago
  4. RelatedNullFilterSpec: django-admin custom filter all/null/not null/choices by Codeko 1 year, 7 months ago
  5. Foreign Key list_filter wthout custom FilterSpec by haileris23 2 years, 3 months ago

Comments

jheasly (on January 13, 2010):

For those unaware of formfield_for_foreignkey (as I was when I came upon this snippet), the docs are here.

#

(Forgotten your password?)