Re: Strange admin changelist bug with list_editable and FK to User in 1.2.3

2011-03-31 Thread Nan
Ah, that does look like it could be the same thing. Thank you! The ticket suggests it was backported, so I'll try upgrading to 1.2.5. On Mar 31, 7:41 pm, Karen Tracey wrote: > On Thu, Mar 31, 2011 at 3:35 PM, Nan wrote: > > Any idea what might be going on?  I'm using 1.2.3 at the moment, and

Re: Strange admin changelist bug with list_editable and FK to User in 1.2.3

2011-03-31 Thread Karen Tracey
On Thu, Mar 31, 2011 at 3:35 PM, Nan wrote: > Any idea what might be going on? I'm using 1.2.3 at the moment, and > the client doesn't want to authorize the work to upgrade to 1.3 just > yet, so I can't determine whether it's version-specific. > Sounds rather like: http://code.djangoproject.co

Strange admin changelist bug with list_editable and FK to User in 1.2.3

2011-03-31 Thread Nan
Hi folks... I've got a model that looks roughly like so: class Account(admin.ModelAdmin): type = models.ForeignKey(AccountType, help_text='Type of account. Determines what features are available to the user.') user = models.ForeignKey(User, unique=True, primary_key=True) design = mode