I just want to add the subscription date in the User list in the Django CRUD Administration site. How can I do that ?

Thank you for your help

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

I finally did like this in my admin.py file :

from django.contrib.auth.admin import UserAdmin
from django.contrib.auth.models import User

UserAdmin.list_display = ('email', 'first_name', 'last_name', 'is_active', 'date_joined', 'is_staff')

admin.site.unregister(User)
admin.site.register(User, UserAdmin)
link|improve this answer
2  
We can also extends the UserAdmin instead of dynamically modifying it ! – Natim Feb 16 '10 at 4:49
To clarify, this should be added to your site's top-level admin.py file. – Jamie Forrest Mar 23 '11 at 11:39
feedback

Assuming that your user class is User and your subscription date field is subscription_date, this is what you need to add on your admin.py

class UserAdmin(admin.ModelAdmin):
    list_display = ('subscription_date',)

admin.site.register(User, UserAdmin)
link|improve this answer
This can works even with the buildin auth.User? – Natim Feb 16 '10 at 4:33
2  
This should inherit from the built-in UserAdmin, otherwise you lose all the rest of the customizations. And you have to unregister the built-in registration too; Natim's answer has the right code. – Carl Meyer Feb 16 '10 at 19:00
feedback

Your Answer

 
or
required, but never shown

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