On Dec 28, 2007 9:06 PM, jeffself <[EMAIL PROTECTED]> wrote:

> I'm creating an admin interface using the Admin application and I've
> renamed a field with the following code:
>
> def display_classification(self):
>    return self.class_name
> display_classification.short_description = 'Classification'
>
> However, when I do this, the column heading no longer allows sorting.
>
> Is there another way to do this?
>

Specifying the name 'Classification' as the first parameter of the
class_name field might do what you want (see
http://www.djangoproject.com/documentation/model-api/#verbose-field-names),
so that you do not need to define display_classification at all.
Alternatively, you can specify the sort column for a non-database field like
so:

display_classification.admin_order_field = 'class_name'

(see http://www.djangoproject.com/documentation/model-api/#list-display, at
the very end of the doc for list_display).

Karen

--~--~---------~--~----~------------~-------~--~----~
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