Re: Can't edit reverse relation in a many2many field in admin site

2008-12-06 Thread Nelson Altimari
Thank you so very much!! It worked exactly like I wanted. I had been through the django tickets, but since this ticket has no keywords, I wasn't able to find it... It's sad to see that this is being going on for nearly 3 years!!! In my case, I had my tables 'syncdb'ed already, so it was not an iss

Re: Can't edit reverse relation in a many2many field in admin site

2008-12-05 Thread anode
Hi, I'm not an expert either, but I think you can get what you want using a technique from here: http://code.djangoproject.com/ticket/897 Basically you just tell your Track model it's part of a many to many relationship like this: class Track(models.Model): name = models.CharField(max_lengt

Can't edit reverse relation in a many2many field in admin site

2008-12-04 Thread Nelson
Hi, I'm fairly new to Django, so I've searched all over for an answer but could not really find it. Maybe this is simple stuff, but anyway I dont have enough information to judge, so I hope you guys can help me... I have the following many-to-many relation: class Record(models.Model): name