Monday, September 8, 2014

Re: Django admin list sort error

Colin

Good suggestion, but I already have a stack of "extra" fields like this (for special needs e.g. calculated  or reformatted fields).  However, doing this for normal fields that Should Just Work seems like a real hack.  Surely the answer is that the underlying SQL is not being generated properly?

Derek



On 5 September 2014 19:26, Collin Anderson <cmawebsite@gmail.com> wrote:
It guess it's pretty complicated, but it's possible to specify it kind of like this:

class MyAdmin(admin.ModelAdmin):
    fields = ['name', 'theplace']

    def theplace(self, obj):
        return obj.place.name
    theplace.admin_order_field = ['place__name']

--
You received this message because you are subscribed to a topic in the Google Groups "Django users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/django-users/wotonl4i01U/unsubscribe.
To unsubscribe from this group and all its topics, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/74dba43b-9462-4bbe-96a6-7672ddd3fbd6%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAF1Wu3MMOeNg%2BXCVjDBAOi8-eVd9G92BGb5yB5G5g_QMBwxv6w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment