Tagged Questions

1
vote
1answer
144 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 …
1
vote
2answers
267 views

limit choices to foreignkey using middleware

I'm looking to do something like this: http://stackoverflow.com/questions/160009/django-model-limitchoicestouser-user with some differences. Some models may explain: class Job(models.Model): …
1
vote
2answers
531 views

Django MTMField: limit_choices_to = other_ForeignKeyField_on_same_model?

I've got a couple django models that look like this: from django.contrib.sites.models import Site class Photo(models.Model): title = models.CharField(max_length=100) site = …