Champ de choix dynamiques dans les modèles Django

Mon models.py:

SHOP1_CHOICES = (
    ('Food Court', 'Food Court'),
    ('KFC', 'KFC'),

)

SHOP2_CHOICES = (
    ('Sports Arena', 'Sports Arena'),
    ('Disco D', 'Disco D'),

)

SHOP3_CHOICES = (
    ('Bowling Arena', 'Bowling Arena'),
    ('Cinemax', 'Cinemax'),

)

class Feed(models.Model):
  gender = models.CharField(max_length=5, choices=GENDER_CHOICES, default='girl')
  name =models.CharField(max_length=25)
  shop=models.CharField(max_length=20)
  location=models.CharField(max_length=25, choices=SHOP1_CHOICES)

Ici si Feed.shop == 'shop1' je veux charger SHOP1_CHOICES sur Feed.location. Actuellement, indépendamment du type de magasin, il affiche juste le SHOP1_CHOICES (pas de surprise).Comment puis-je mettre en œuvre? Je suis coincé, s'il vous plaît aider.

source d'informationauteur Nazim Zeeshan