Tagged Questions

9
votes
1answer
2k views

In Django, how do you retrieve data from extra fields on many-to-many relationships without an explicit query for it?

Given a situation in Django 1.0 where you have extra data on a Many-to-Many relationship: class Player(models.Model): name = models.CharField(max_length=80) class Team(models.Model): name = ...
7
votes
1answer
402 views

Ordered ManyToManyField that can be used in fieldsets

I've been working through an ordered ManyToManyField widget, and have the front-end aspect of it working nicely: Unfortunately, I'm having a great deal of trouble getting the backend working. The ...
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 ...
3
votes
1answer
107 views

Duplicate django objects with ManyToManyFields

I use Django and I have some objects with ManyToManyFields. I'd like to duplicate these objects. I've found 'deepcopy' which works almost perfectly. >>> e = Equipement.objects.get(pk=568) ...
2
votes
2answers
49 views

Django: Saving multiple ManyToMany fields within a transaction

this is the representation of my models: class B(models.Model): """I'm a dummy model, so doesn't pay atention of what I do""" name = models.CharField(max_length=250) class A(models.Model): ...
2
votes
3answers
724 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
901 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 ...
2
votes
2answers
218 views

Django (1.2) Forms: ManyToManyField Help Text

I hope I'm wrong, but it looks to me like the only way to have no help_text for a ManyToManyField is write an __init__ method for the form and overwrite self.fields[fieldname].help_text. Is that ...
1
vote
2answers
38 views

Saving to ManyToManyFields using ModelForm and ModelMultipleChoiceField

I've created a basic Django app that contains books/authors/publishers as per the Django Book - trying to use a ModelForm to create a means to modify existing books - the problem is that the 'authors' ...
1
vote
2answers
66 views

How to select all objects that aren't in a manytomany relation in Django

I have the following models (resumed) in an application: class Account(models.Model): name = models.CharField(max_length=64) plans = models.ManyToManyField('Plan') extra_services = ...
1
vote
2answers
233 views

How to make recursive ManyToManyField relationships that have extra fields symmetrical in Django?

class Food_Tag(models.Model): name = models.CharField(max_length=200) related_tags = models.ManyToManyField('self', blank=True, symmetrical=False, through='Tag_Relation') def ...
1
vote
1answer
170 views

manyToManyField question

Hay guys, I'm writing a simple app which logs recipes. I'm working out my models and have stumbled across a problem My Dish models needs to have many Ingredients. This is no problem because i would ...
1
vote
3answers
401 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, ...
0
votes
1answer
63 views

how to use ManytoManyField in djangorestframework

i'm using djangorestframework. the models one meeting could have many participates. So i tried to use ManytoManyField of django: class Meeting(models.Model): ...
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
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
40 views

searching for a foreign object via manytomanyfield

Hay i have a model def Friends(models.Model): user = models.ManyToManyField(User) def User(models.Model): and i can add "users" to the "friend" model by using friend = ...
0
votes
1answer
146 views

Question on Django: Displaying many to many fields

I seem to have a problem with Django when it comes Rendering ManyToManyField in a template. I can make it work partially, but I cannot make it work properly as I want it. Firstly I have an invoice ...
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
3answers
899 views

Django : save a new value in a ManyToManyField

I gave details on my code : I don't know why my table is empty (it seems that it was empty out after calling save_model, but I'm not sure). class PostAdmin(admin.ModelAdmin): def save_model(self, ...