Re: auth_user first_name and last_name editing

2010-11-29 Thread derek
Have you looked at: http://docs.djangoproject.com/en/dev/topics/auth/#module-django.contrib.auth.forms Failing that, http://docs.djangoproject.com/en/dev/ref/generic-views/ may help get you going quickly. On Nov 25, 8:08 pm, BozoJoe wrote: > So no builtin views and urls in any modules? -- You

Re: auth_user first_name and last_name editing

2010-11-25 Thread BozoJoe
So no builtin views and urls in any modules? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups

Re: auth_user first_name and last_name editing

2010-11-24 Thread Scott Gould
A simple custom ModelForm should do the trick: from django.contrib.auth.models import User class UserChangeForm(forms.ModelForm): class Meta: fields = ('first_name', 'last_name',) model = User On Nov 24, 1:33 pm, BozoJoe wrote: > HI, > > I'm using django

auth_user first_name and last_name editing

2010-11-24 Thread BozoJoe
HI, I'm using django-registration and django-profiles to handle user creation and adding additional profile fields. However I'm at a lost as to how to allow the user to create/edit their first_name and last__name in the auth_user table? Do I need to do custom work to get a form for the user to c