That guy
unread,Dec 29, 2012, 6:17:19 PM12/29/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
After overriding list_display, I noticed that I lost access to being able to directly click on the object to view all its fields in the control panel. Hence, I needed to resort to defining return_unicode. I know that theres definitely a better way to approach it, so whats the 'Django' way of doing this?
def return_unicode(obj):
return obj.__unicode__()
class PictureAdmin(admin.ModelAdmin):
list_display = (return_unicode,'uploader','image','rated','approved',)
Thank You ahead of time.