Tagged Questions

2
votes
1answer
228 views

Django custom ManyToManyField validation

I created a custom manytomany field for a model. When this model is saved, I would like to run a validator in the m2m field. Problem is: the method validate is not called; like in the foreignkey ...
1
vote
2answers
451 views

My Django manytomany fields are all marked unique, is there an option to remove this?

Given a model like this: class A(models.Model): def __unicode__(self): return "%d"%self.id class B(models.Model): a_set = models.ManyToManyField(A) def __unicode__(self): ...
1
vote
2answers
111 views

What is the best means to achieve efficient many-to-many scanning with Django models?

I have a many to many relationship in Django similar as this: class Account ( models.Model ): name = models.CharField( max_length = 30 ) user = models.ForeignKey( User, null = True, blank = True ...
1
vote
0answers
160 views

How can i use ManyToManyRawIdWidget outside admin? [closed]

Possible Duplicate: Django: using ForeignKeyRawIdWidget outside of admin forms Im new to django and I would like to know how could i use the ManytoManyRawId widget outside admin. I've ...
1
vote
1answer
353 views

Querying django ManyToMany

I have got Foo <=> FooGroup <=> Bar relation, where <=> stands for ManyToMany field. How do I retrieve all the Foos for a specific Bar instance?
0
votes
1answer
80 views

Way to allow for duplicate many-to-many entries in Python/Django

I have the following Django model: class Icon(models.Model): name = models.CharField(max_length=200,null=False,blank=False) class Post(models.Model): icons = models.ManyToManyField(Icon) ...
0
votes
1answer
77 views

Django admin, limiting what data is being displayed inside a ManyToManyField

i have 3 models Team, Player and Fixture. Fixture class Fixture(models.Model): """(Fixture description)""" home = models.ForeignKey(Team, related_name="home_games") away = ...
0
votes
2answers
52 views

cannot display work orders in an email

Hello I am trying to display work orders from my mysql database to show up in an email. However There is a problem because work_orders is a part of my Class Invoice manytomany field. This gives me ...
0
votes
2answers
122 views

Having a problem displaying a manytomany fields

I seem to have a problem displaying work orders. in my app. The clients does not have the same problem so why does the work orders not show up. Actually it is as almost as a black space appears rather ...
0
votes
2answers
128 views

Django select objects with empty ManyToManyField

Considering the following models, knowing a family, how do I select Kids with no buyers? class Family... class Kid(models.Model): name = models.CharField(max_length=255) family = ...
0
votes
2answers
719 views

Django Admin: Many-to-Many listbox doesn't show up with a through parameter

I have the following models: class Message(models.Model): date = models.DateTimeField() user = models.ForeignKey(User) thread = models.ForeignKey('self', blank=True, null=True) ...
0
votes
2answers
693 views

Need help with Django model design, ManyToManyField “through” an intermediate model and its implications for uniqueness

I have the following Django models: - class Company(models.Model): name = models.CharField(max_length=50) is_active = models.BooleanField(db_index=True) class Phase(models.Model): ...