Tagged Questions

5
votes
2answers
2k views

Django: Is there a way to have the “through” model in a ManyToManyField in a different app to the model containing the ManyToManyField?

Lets say I have two django apps: competitions - which will handle competition data entries - which will handle functionality relating to entering competitors into competitions In the competitions ...
2
votes
3answers
721 views

Show a ManyToManyField as Checkboxes in Django Admin

is there a simple way to do that?? help please! thanks in advance!
2
votes
2answers
899 views

Django - ManyToManyField in a model, setting it to null?

I have a django model (A) which has a ManyToManyField (types) to another model (B). Conceptually the field in A is an 'optionally limit this object to these values'. I have set blank=null and ...
1
vote
0answers
466 views

Django ManytoMany widget to CheckboxSelectMultiple and chained querysets

It happened that I needed a ManytoMany field to be displayed as a CheckboxSelectMultiple no problem with that. The trick part is that there are default fields to be displayed and a user should be able ...
1
vote
2answers
369 views

Instantiate model instance with manytomany field in Django

I have a method that works, but it seems very clumsy, and I would think there is a better way to do this. I have a Model that relates a user on my site (a twitter clone for learning purposes) to a ...
1
vote
2answers
2k views

'QuerySet' object has no attribute ERROR, trying to get related data on ManyToMany fields

i have the following models: class Tag(models.Model): tag_name = models.CharField(max_length=250) tagcat = models.ForeignKey('TagCat') class Subject(models.Model): user = ...
1
vote
1answer
358 views

Get all objects defined by a Django ManyToManyField relationship

The site I'm building allows users to create "posts" and has a Twitter-like concept of followed users. For a given user, I'd like to show all of the posts from the users that they follow. Here are my ...
1
vote
1answer
222 views

Can I add a manager to a manytomany relationship?

I have two models that has a manytomany relationship with a 'through' table in some way? class Bike(models.Model): nickname = models.CharField(max_length=40) users = ...
1
vote
3answers
400 views

How to check the type of a many-to-many-field in django?

How can you check the type of a many-to-many-field in django? I wanted to do it this way: import django field.__class__ == django.db.models.fields.related.ManyRelatedManager This doesn't work, ...
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 ...
0
votes
1answer
76 views

Django Admin ManyToManyField

I've made a model (models.py): class opetest(models.Model): name = models.CharField(max_length=200) author = models.ForeignKey(User, related_name='author') description = ...
0
votes
1answer
200 views

Sorting ManyToMany field automatically in Django model

I currently have a set of models that look similar to this contrived code: class Pizza(models.Model): price = models.FloatField() topping = models.ManyToManyField(RouteGate, ...
0
votes
1answer
314 views

django-admin: creating,saving and relating a m2m model

I have two models: class Production(models.Model): gallery = models.ManyToManyField(Gallery) class Gallery(models.Model): name = models.CharField() I have the m2m relationship in my ...
0
votes
1answer
560 views

django manytomany through

If I have two Models that have a manytomany relationship with a through model, how do I get data from that 'through' table. class Bike(models.Model): nickname = models.CharField(max_length=40) ...
0
votes
1answer
209 views

How can I sort by the id of a ManyToManyField in Django?

I've got a ManyToManyField in a user object and it's used to map the users that user is following. I'm trying to show a subset list of who they have most recently followed. Is there a trick in ...
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): ...