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
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
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
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
4 matches
Mail list logo