Tagged Questions
2
votes
1answer
628 views
Dynamic filtering on FK in Django Admin
I have one Product Model that has a FK to price, as one product can contain many prices. But I also want to be able to pick which one of those many prices should be the actual price, therefore I have ...
0
votes
1answer
203 views
Django: “limit_choices_to” doesn't work on ManyToManyField
I am running Django 1.1 and cannot get the "limit_choices_to" option for my ManytoManyField to work.
I have two models:
class MemberPhoto(ImageModel):
title = models.CharField(_('title'), ...