Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 338353
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T10:25:17+00:00 2026-05-12T10:25:17+00:00

I have an object with a ManyToMany relation with another object. In the Django

  • 0

I have an object with a ManyToMany relation with another object.
In the Django Admin this results in a very long list in a multiple select box.

I’d like to filter the ManyToMany relation so I only fetch Categories that are available in the City that the Customer has selected.

Is this possible? Will I have to create a widget for it? And if so—how do I copy the behavior from the standard ManyToMany field to it, since I would like the filter_horizontal function as well.

These are my simplified models:

class City(models.Model):
    name = models.CharField(max_length=200)


class Category(models.Model):
    name = models.CharField(max_length=200)
    available_in = models.ManyToManyField(City)
    

class Customer(models.Model):
    name = models.CharField(max_length=200)
    city = models.ForeignKey(City)
    categories = models.ManyToManyField(Category)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T10:25:18+00:00Added an answer on May 12, 2026 at 10:25 am

    Ok, this is my solution using above classes.
    I added a bunch more filters to filter it correctly, but I wanted to make the code readable here.

    This is exactly what I was looking for, and I found my solution here: http://www.slideshare.net/lincolnloop/customizing-the-django-admin#stats-bottom (slide 50)

    Add the following to my admin.py:

    class CustomerForm(forms.ModelForm): 
        def __init__(self, *args, **kwargs):
            super(CustomerForm, self).__init__(*args, **kwargs)
            wtf = Category.objects.filter(pk=self.instance.cat_id);
            w = self.fields['categories'].widget
            choices = []
            for choice in wtf:
                choices.append((choice.id, choice.name))
            w.choices = choices
    
    
    class CustomerAdmin(admin.ModelAdmin):
        list_per_page = 100
        ordering = ['submit_date',] # didnt have this one in the example, sorry
        search_fields = ['name', 'city',]
        filter_horizontal = ('categories',)
        form = CustomerForm
    

    This filters the “categories” list without removing any functionality! (ie: i can still have my beloved filter_horizontal :))

    The ModelForms is very powerful, I’m a bit surprised it’s not covered more in the documentation/book.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 251k
  • Answers 251k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer They are part of the font set. called Emoji icons.… May 13, 2026 at 9:28 am
  • Editorial Team
    Editorial Team added an answer Well, creating the sequence with all the numbers in is… May 13, 2026 at 9:28 am
  • Editorial Team
    Editorial Team added an answer Of course there is the NSArray class, for an indexed… May 13, 2026 at 9:28 am

Related Questions

I have two models, EqTD (EquivalentTextDescription) and location. EqTD has a manytomany relation to
Good Morning All, I've been a PHP programmer for quite some time, but I've
I'm seeing performance problems with retrieving multiple instances of objects that have many relationships
i'm writing a data migration using south... but the question refers to the use

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.