Skip to content

Instantly share code, notes, and snippets.

@linxuedong
Created January 9, 2018 08:48
Show Gist options
  • Save linxuedong/d8733ff6ce893d731108034aeaad41f4 to your computer and use it in GitHub Desktop.
Save linxuedong/d8733ff6ce893d731108034aeaad41f4 to your computer and use it in GitHub Desktop.
FilteredSelectMultiple

models.py

from django.db import models

class Topping(models.Model):
    # ...
    pass

class Pizza(models.Model):
    # ...
    toppings = models.ManyToManyField(Topping)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment