Re: Django Admin Titles

2009-03-17 Thread AKK
Thanks, thats worked fine. I don't know why my original message has reproduced itself. Regards, Andrew --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to djang

Django Admin Titles

2009-03-17 Thread AKK
Hi, I've got the django adming setup but if i look at posts for example i just get a with post object loads of times. How can i it so it displays the post title? In my admin.py i have: admin.site.register(Post) and the model is: post_title = models.CharField(max_length=750) . post_t

Re: Django Admin Titles

2009-03-17 Thread Alex Gaynor
On Tue, Mar 17, 2009 at 5:27 PM, AKK wrote: > > Hi, > > I've got the django adming setup but if i look at posts for example i > just get a with post object loads of times. How can i it so it > displays the post title? > > In my admin.py i have: > > admin.site.register(Post) > > and the model is:

Django Admin Titles

2009-03-17 Thread AKK
Hi, I've got the django adming setup but if i look at posts for example i just get a with post object loads of times. How can i it so it displays the post title? In my admin.py i have: admin.site.register(Post) and the model is: post_title = models.CharField(max_length=750) . post_t