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
400 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) ...
3
votes
1answer
386 views

Django: AJAX ManyToManyField in admin

I want to display ManyToManyFields in admin just like filter_horizontal does, but populate the options as the user types into the filter field. There are many options and loading them all at once ...
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
2answers
48 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
1answer
64 views

How to use save_model in an AdminForm containing a M2M field?

i'm having an annoying issue with django model system + its default admin. Let's assume i have a very simple model like: class Note(models.Model): text = models.CharField(max_length=200) def ...
2
votes
1answer
169 views

Django syncdb conflicting related_name when using inheritance and ForeignKey

This time I think it's not me being stupid but an actual conflict. I have the below code (simplified): from django.db import models class Alpha(models.Model): relation = ...
2
votes
1answer
227 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 ...
2
votes
1answer
716 views

How to add multiple objects to ManyTOMany relationship at once in Django?

Based on the Django doc, I should be able to pass multiple objects at once to be added to a manytomany relationship but I get a * TypeError: unhashable type: 'list' when I try to pass a django ...
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
1answer
377 views

How do I remove multiple objects in a ManyToMany relationship based on a filter?

Given these two Models: class Item(models.Model): timestamp = models.DateTimeField() class Source(models.Model): items = models.ManyToManyField(Item, related_name="sources") I can find all ...
2
votes
1answer
249 views

Django: InlineAdmin and ManyToManyField with 'through'

I'm having a simple Gallery model, that is related to an Image model via a many-to-many relationship through a table that has an ordering-attribute: # models.py class Image(models.Model): .... ...
2
votes
2answers
898 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 ...
2
votes
1answer
249 views

Django self-recursive ManyToManyField filter query

I have a model like so: class Activity(models.Model): title = models.CharField(max_length=200) summary = models.TextField(null=True, blank=True) tasks = ...
2
votes
1answer
501 views

Django, get fully serialized object. All properties from many to many relationships

I'm looking for a way to serialize an entire object with all of it's relationships. I seem to be only able to get the primary key from the serializer now. This is my model: class ...
2
votes
2answers
133 views

How to limit manytomanyfields on a model?

I would like to check that I get not more than 3 relations set on a manytomanyfield. I tried on the clean method to do this : if self.tags.count()>3: raise ValidationError(_(u'You cannot add ...
1
vote
2answers
36 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
0answers
151 views

ManyToManyField widget in a django admin change list?

In the change list of the django admin, I want to use list_editable to display a django-autocomplete widget for a ManyToManyField. I found something similar here: list_editable and widgets Normally ...
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
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
194 views

How do I exclude current object in ManyToMany query?

I have two basic models, Story and Category: class Category(models.Model): title = models.CharField(max_length=50) slug = models.SlugField() ... class Story(models.Model): headline = ...
1
vote
2answers
476 views

Django admin checkbox with multiple select

I have a Django app. Pretty basic one at that. In the model I have a class for items and a class for groups. The groups has a many to many for the items: items = models.ManyToManyField(item, ...
1
vote
2answers
153 views

How do I tell Django to not create a table for an M2M related field?

I'm using this little jewel of a Django code snippet to edit a ManyToManyField from both directions: class ManyToManyField_NoSyncdb(models.ManyToManyField): def __init__(self, *args, **kwargs): ...
1
vote
1answer
367 views

Django Model; saving extra items in a ManyToMany field on save

So I am currently implementing a new tagging system for on top of an already existing database. The current tagging system makes use of a ManyToMany field, however the client would like to have a ...
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
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
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
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
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
449 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?
1
vote
4answers
3k views

Django model custom save with ManyToManyField problem

I know this question has been posted multiple times but I still couldn't find a definite answer to this problem. So, here I go: class Invoice(models.Model): program = models.ForeignKey(Program) ...
0
votes
2answers
18 views

initialize modelformset with manytomanyfield

All, I am trying to initialize a modelformset with a manytomanyfield. A catch is that I do not know in advance the name of the manytomanyfield (nor the class it is bound to). Here are my models and ...
0
votes
1answer
50 views

about django ManyToManyField

I'm writing a blog program using django. class Tag(models.Model): name = models.CharField(max_length=100) class BlogPost(models.Model): ..... tags = models.ManyToManyField(Tag) .... In ...
0
votes
1answer
62 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
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
42 views

Django ManyToMany filter with more than one condition

My simplified models are as follows: class Function(models.Model): name = models.CharField(max_length=20) params = models.ManyToManyField("Param") class Param(models.Model): name = ...
0
votes
0answers
51 views

Django ManyToManyField holds items with a foreign key. How do I create a Form?

I have many kinds of items that the user may order. Some can be sold several at a time, some only singly. Each has its own description. To make this happen, I have a "catalog" table (ChargeKind) that ...
0
votes
0answers
48 views

Django horizontal_filter - Problem updating select using client side code

I am currently utilizing a horizontal_filter within one of my admin forms, in support of a many-to-many relationship within my model, that requires dynamic filtering of the "from" multi-select based ...
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
169 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'), ...
0
votes
1answer
54 views

How list ManyToManyField in interactive shell?

I'm new to Django, sorry if this is a basic question. I need to list the values of "n_category" in a Directory. My model is: from django.db import models import datetime class ...
0
votes
1answer
130 views

ManyToMany field values from queryset

Suppose i have this model: Class Item(models.Model): ... Class ItemCollection(models.Model): ... items = models.ManyToManyField(Item) ... Now i filter ItemCollection: collection = ...

1 2