Re: edit_inline causing problems with multiple relations

2007-06-06 Thread James Punteney
Thanks Malcolm. I went ahead and filed a ticket for this issue. http://code.djangoproject .com/ticket/4490 --James On 6/6/07, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > On Tue, 2007-06-05 at 13:01

Re: edit_inline causing problems with multiple relations

2007-06-05 Thread Malcolm Tredinnick
On Tue, 2007-06-05 at 13:01 -0400, James Punteney wrote: > I'm having this issue as well. > > Anyone know if a ticket was filed for this or have any fixes been > done? I looked in Trac and didn't anything. > > If not I'll go ahead and submit a ticket. As far as I know, there is no open ticket

Re: edit_inline causing problems with multiple relations

2007-06-05 Thread James Punteney
I'm having this issue as well. Anyone know if a ticket was filed for this or have any fixes been done? I looked in Trac and didn't anything. If not I'll go ahead and submit a ticket. Thanks, --James On 4/4/07, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > On Wed, 2007-04-04 at 01:13

Re: edit_inline causing problems with multiple relations

2007-04-04 Thread Malcolm Tredinnick
On Wed, 2007-04-04 at 01:13 -0700, mh wrote: > > I thought we fixed this a bit before 0.96 was released. Are you using > > the latest release or some older code? > > Upgraded to 0.96 before I posted here, hoping it'd fix it but it > didn't :/. Hmmm. :-( That's annoying. Could you drop your

Re: edit_inline causing problems with multiple relations

2007-04-04 Thread Malcolm Tredinnick
On Wed, 2007-04-04 at 18:33 +0800, Russell Keith-Magee wrote: > On 4/4/07, mh <[EMAIL PROTECTED]> wrote: [...] > > > GenericRelations exist for this kind of relationship. GenericRelations > > > aren't completely stable or documented, and they aren't fully > > > supported in the Admin, but they do

Re: edit_inline causing problems with multiple relations

2007-04-04 Thread Russell Keith-Magee
On 4/4/07, mh <[EMAIL PROTECTED]> wrote: > > > the top of my head, but I do know that problems with edit_inline and > > manipulators is one of the many reasons that we are introducing > > newforms. > > Good to know. I see there's a branch dedicated to porting the admin to > newforms, but sadly

Re: edit_inline causing problems with multiple relations

2007-04-04 Thread mh
> the top of my head, but I do know that problems with edit_inline and > manipulators is one of the many reasons that we are introducing > newforms. Good to know. I see there's a branch dedicated to porting the admin to newforms, but sadly there doesn't seem to have been that much activity in

Re: edit_inline causing problems with multiple relations

2007-04-04 Thread mh
> I thought we fixed this a bit before 0.96 was released. Are you using > the latest release or some older code? Upgraded to 0.96 before I posted here, hoping it'd fix it but it didn't :/. --~--~-~--~~~---~--~~ You received this message because you are

Re: edit_inline causing problems with multiple relations

2007-04-03 Thread Malcolm Tredinnick
On Tue, 2007-04-03 at 07:24 -0700, mh wrote: > I have two models that (simplified) look like this; > > class List(models.Model): > name =models.CharField(maxlength=128) > class Admin: > pass > > class Entry(models.Model): > name = models.CharField(maxlength=128, core=True) > list =

Re: edit_inline causing problems with multiple relations

2007-04-03 Thread Russell Keith-Magee
On 4/3/07, mh <[EMAIL PROTECTED]> wrote: > > This doesn't seem to be working ('bool' object is not callable); any > suggestions on how I could fix it? I can't see anything immediately wrong with your model - however, the error you are reporting sounds like a known problem with the manipulators

edit_inline causing problems with multiple relations

2007-04-03 Thread mh
I have two models that (simplified) look like this; class List(models.Model): name =models.CharField(maxlength=128) class Admin: pass class Entry(models.Model): name = models.CharField(maxlength=128, core=True) list = models.ForeignKey(List, edit_inline=models.TABULAR) to =