Thanks for your help - I used list_display and it works fine.

Cheers,
Nick


On Sep 1, 2:55 pm, "Valts Mazurs" <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I guess that you want to have more details in admin list view.
> You can use list_display configuration attribute in admin class for your
> model.
>
> << models.py >>
> class MyModel(models.Model):
>   short_name = models.CharField(max_length = 20)
>   full_name = models.CharField(max_length = 100)
>   def __unicode__ (self):
>     return self.short_name
>
> <<admin.py>>
> class MyModelOptions(admin.ModelAdmin):
>   list_display = ('full_name',)
>
> Regards,
> Valts.
>
> On Mon, Sep 1, 2008 at 4:48 PM, Nick Day <[EMAIL PROTECTED]> wrote:
>
> > Hi,
>
> > I have a model with a __unicode__ method as follows:
>
> > def __unicode__(self):
> >    return self.short_name
>
> > However, if this is being called from within the admin site, I would
> > like it to return something different e.g:
>
> > def __unicode__(self):
> >    return self.full_name
>
> > This is so I can allow for more detail to be shown in the admin site,
> > where as the normal site shows a less-detailed field (short_name).
>
> > Any help very much appreciated!
>
> > Cheers,
> > Nick
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to