Re: ForeignKey fields in list_display

2007-03-11 Thread Gilhad
On Sunday 11 March 2007 10:19, Laurie wrote: > > > When I go to the admin page that lists all Test objects, Django hangs. > > > If I remove 'owner', from the list_display tuple, it works as > > > expected. > > > > > > Is this something that's not supported, or am I doing something > > > silly? :-)

Re: ForeignKey fields in list_display

2007-03-11 Thread Laurie
On Mar 11, 4:22 am, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Sun, 2007-03-11 at 00:06 -0800, Laurie wrote: > > If I include a field which is a foreign key in my list_display admin > > option, Django hangs. When using 'manage.py runserver' I'm unable to > > get any further response from t

Re: ForeignKey fields in list_display

2007-03-11 Thread Malcolm Tredinnick
On Sun, 2007-03-11 at 00:06 -0800, Laurie wrote: > If I include a field which is a foreign key in my list_display admin > option, Django hangs. When using 'manage.py runserver' I'm unable to > get any further response from the app once this happens. > > Here's an example: > > class Test(models.M

ForeignKey fields in list_display

2007-03-11 Thread Laurie
If I include a field which is a foreign key in my list_display admin option, Django hangs. When using 'manage.py runserver' I'm unable to get any further response from the app once this happens. Here's an example: class Test(models.Model): name = models.CharField(maxlength=100) owner = m