Tagged Questions

3
votes
3answers
2k 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 = ...
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 ...
2
votes
3answers
1k 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
1answer
131 views

In Django forms.ModelChoiceField HOWTO restrict displayed choices but set one of the restricted values during cleanup

I have a custom field which subclasses ModelMultipleChoiceField. I provide the choices to be displayed via queryset parameter. This queryset excludes certain values. My problem comes when during ...
0
votes
1answer
206 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'), ...