So, the extra field in a queryset can be used to add additional columns to your select query, which in turn can be set as the default ordering. I have so far been able to achieve this: created an extra field and then set it as default ordering.

qs = qs.extra(select={'natname':"concat('0', nat, name)"}, order_by=['natname'])

Now, in my admin interface, I have my other fields {name, nat, location, space, ....} and the results from the table are ordered by natname when the page is loaded...perfect.

But now I wish to enable ordering on the name field, but instead of ordering by name, I want it to order it by natname. Is this possible?

So even though natname is an extra field, I want to somehow bind the column name with natname when it comes to ordering.

Right now, if I do qs.query.__str__(), I get the sql query with order by natname. When I click on the column name, order by changes to name, but just for this special case, I wish it to order it by natname. Is this possible?

I have looked at how Django generates the headers and the views for these automated admin pages under <django-installation-path>/contrib/admin but it only references the list_display set defined in the ModelAdmin for this model. If I make any changes there, the columns displayed get changed in the admin-view.

It might sound a bit confusing. If you require particular details, please feel free to ask.

Thanks.

link|improve this question
I've subclassed ChangeList to override the get_ordering method, pulling from a FIELD_MAP dictionary to convert one field's ordering to another, but it only owrks in one direction. The trouble I'm having now is getting django.contrib.admin.templatetags.admin_list.result_headers to render the opposite direction (desc / asc) link. result_headers checks cl.order_field which has now been overridden to natname and thus never finds a matching field to reverse ordering for. Boo. Let me know if you reach a solution ; ) – Yuji Tomita Feb 3 '11 at 21:18
@Shuvo: take a look at my revised, working answer below. – mkelley33 Feb 4 '11 at 16:34
@Yuji: I'm doing something similar right now. I'll give mkelly33's script a shot. Thanks u guys! Tonnes of help. Appreciate. – Shuvo Feb 4 '11 at 16:48
@Shuvo yes, mkelley33's updated answer is the win button. Functionally equivalent to any other potential solution and certainly easier. – Yuji Tomita Feb 4 '11 at 16:52
@Yuji: Absolutely...only if natname could be displayed. But they want name displayed instead and want it to be ordered by only referencing natname. Check below. – Shuvo Feb 4 '11 at 17:24
show 1 more comment
feedback

1 Answer

up vote 4 down vote accepted

Yes! this is possible (at least in Django 1.2.3):

In your admin.ModelAdmin subclass:

from django.contrib import admin

from .models import ClassA

class ModelAdminA(admin.ModelAdmin):
    list_display = ('natname',)

    def natname(self, obj):
        return obj.name
    natname.admin_order_field = 'natname'
    natname.short_description = 'name'

    def queryset(self, request):
        qs = super(ModelAdminA, self).queryset(request)
        qs = qs.extra(select={ 'natname': "concat('0', nat, name)" })
        return qs

admin.site.register(ClassA, ModelAdminA)
link|improve this answer
1  
I don't think this will work because ChangeList.get_ordering first looks for a valid model field. It only searches the ModelAdmin and admin_order_field if field lookup fails (which it won't in this case) – Yuji Tomita Feb 3 '11 at 20:59
@Yuji: thx for the insight! I'll mark this post for deletion once I give it a try. I looked at the source, and my instinct is that you're right. Boo indeed :( – mkelley33 Feb 4 '11 at 0:23
@Yuji: I changed my answer. We can haz answer! See above. Thx again. – mkelley33 Feb 4 '11 at 16:33
@mkelley33, nice one! I like it. Functionally the same as mapping fields. What the heck was I doing digging into ChangeList... – Yuji Tomita Feb 4 '11 at 16:36
@Yuji: LOL apparently you were protecting me and others from spreading/consuming misinformation. I'm glad I was able to correct myself! Thx for digging :) – mkelley33 Feb 4 '11 at 16:43
show 11 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.