vote up 2 vote down star
3

I want to apply the "ordering" Meta option to the Django model User from django.contrib.auth.models. Normally I would just put the Meta class in the model's definition, but in this case I did not define the model. So where do I put the Meta class to modify the User model?

flag

Which version of Django are you using? – Ryan Duffield Apr 6 at 2:42
I am on version 1.0.2. – hekevintran Apr 6 at 4:24
If that's the case, definitely look at Daniel's answer below. – Ryan Duffield Apr 6 at 15:01

4 Answers

vote up 3 vote down check

Paolo's answer is great; I wasn't previously aware of the new proxy support. The only issue with it is that you need to target your code to the OrderedUser model - which is in a sense similar to simply doing a User.objects.filter(....).order_by('username'). In other words, it's less verbose but you need to explicitly write your code to target it. (Of course, as mentioned, you'd also have to be on trunk.)

My sense is that you want all User queries to be ordered, including in third party apps that you don't control. In such a circumstance, monkeypatching the base class is relatively easy and very unlikely to cause any problems. In a central location (such as your settings.py), you could do:

from django.contrib.auth.models import User
User.Meta.ordering = ['username']
link|flag
That code fails; you will want to do this instead: User._meta.ordering = ['username']. – Ryan Duffield Apr 6 at 4:12
Did you test it? If you do it in settings.py, before the app models in INSTALLED_APPS are initialized, I think it ought to work.. – Daniel Apr 6 at 4:26
Ah, I only tested it in a console. Still, I think I'd recommend changing _meta if monkeypatching. – Ryan Duffield Apr 6 at 13:08
Ryan's approach is better. Importing models in settings.py is very bad practice and likely to lead to breakage. – Carl Meyer Apr 6 at 15:18
I respectfully disagree... it's better to hook into the model before django does it's metaprogramming magic and transforms the class into something other than what's well documented – Daniel Apr 6 at 16:02
show 5 more comments
vote up 0 vote down

Contact the author and ask them to make a change.

link|flag
I think when he said "I do not define it" he meant that it's the Django model and the code is in the core. – Paolo Bergantino Apr 6 at 3:01
I didn't downvote, though. – Paolo Bergantino Apr 6 at 3:09
vote up 2 vote down

You can either subclass User:

class OrderedUser(User):
    class Meta:
        ordering = ['-id', 'username']

Or you could use the ordering in ModelAdmin:

class UserAdmin(admin.ModelAdmin):
    ordering = ['-id', 'username']

# unregister user since its already been registered by auth
admin.site.unregister(User)
admin.site.register(User, UserAdmin)

Note: the ModelAdmin method will only change the ordering in the admin, it won't change the ordering of queries.

link|flag
+1: Fix the admin. You left off adding ordering to the relevant view queries for custom view functions. – S.Lott Apr 6 at 10:17
vote up 5 vote down

This is how the Django manual recommends you do it:

You could also use a proxy model to define a different default ordering on a model. The standard User model has no ordering defined on it (intentionally; sorting is expensive and we don't want to do it all the time when we fetch users). You might want to regularly order by the username attribute when you use the proxy. This is easy:

class OrderedUser(User):
    class Meta:
        ordering = ["username"]
        proxy = True

Now normal User queries will be unorderd and OrderedUser queries will be ordered by username.

Note that for this to work you will need to have a trunk checkout of Django as it is fairly new.

If you don't have access to it, you will need to get rid of the proxy part and implement it that way, which can get cumbersome. Check out this article on how to accomplish this.

link|flag
Note that at this time, proxy models are only supported in the development (SVN) version of Django. – Ryan Duffield Apr 6 at 2:41
I pointed that out in my answer, but I guess I will bold it as it is an important thing to be aware of. – Paolo Bergantino Apr 6 at 3:00
+1 for proxies. I didn't even know that existed. 1.1 is going to be a nice release. – Soviut Apr 6 at 3:08
Sorry, didn't notice that at first; you got my +1 anyways. Proxies are awesome. :-) – Ryan Duffield Apr 6 at 3:11

Your Answer

Get an OpenID
or

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