Re: extending the auth model to display more fields in admin

2006-10-23 Thread orestis
Sorry to cause misunderstanding. Anyway, thanks to the great #django channel, I figured this out: def hack_user(sender, args , kwargs): sender._meta.admin.list_display=('username', 'email', 'first_name', 'last_name', 'is_staff', 'date_joined') pass from django.db.models import signals f

Re: extending the auth model to display more fields in admin

2006-10-23 Thread Don Arbow
On Oct 23, 2006, at 10:32 AM, orestis wrote: > > Thanks, but that will not do. I want the fields to show up in the > admin > list display. I don't want to add any new fields. I just want to view > more fields in the list, and be allowed to sort on them (eg. to > sort by > date of creation etc)

Re: extending the auth model to display more fields in admin

2006-10-23 Thread orestis
Thanks, but that will not do. I want the fields to show up in the admin list display. I don't want to add any new fields. I just want to view more fields in the list, and be allowed to sort on them (eg. to sort by date of creation etc) --~--~-~--~~~---~--~~ You re

Re: Re: extending the auth model to display more fields in admin

2006-10-23 Thread Jay Parlar
On 10/23/06, orestis <[EMAIL PROTECTED]> wrote: > > Anyone ? > Maybe this is too much, but with it you can extend the User module and add whatever fields you want: http://www.b-list.org/weblog/2006/06/06/django-tips-extending-user-model Jay P. --~--~-~--~~~---~--~---

Re: extending the auth model to display more fields in admin

2006-10-23 Thread orestis
Anyone ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For m

extending the auth model to display more fields in admin

2006-10-17 Thread orestis
Hello, I have a simple need: I'd like to view/sort in the admin the signup date of my users. How can I add a field in the User Admin list_display ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" gro