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?
|
3
|
|||||||
|
|
|
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 My sense is that you want all
|
||||||||||
|
|
|
Contact the author and ask them to make a change. |
||||
|
|
|
You can either subclass User:
Or you could use the ordering in ModelAdmin:
Note: the ModelAdmin method will only change the ordering in the admin, it won't change the ordering of queries. |
||
|
|
|
This is how the Django manual recommends you do it:
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. |
||||||||
|
