Re: Admin User registration problem...

2011-06-16 Thread ashish tiwari
thank you... -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/T4B46pv50HwJ. To post to this group, send email to django-users@googlegroups.com. To unsubscrib

Re: Admin User registration problem...

2011-06-16 Thread Kenny Meyer
> i want to create superuser(administrator) on registration User.objects.create_superuser is your friend. >             user=User.objects.create_user( >                 username=form.cleaned_data['username'], >                 password=form.cleaned_data['password1'], >                 email=fo

Admin User registration problem...

2011-06-16 Thread ashish tiwari
hi friends, i developed an application in django-nonrel with appengine. i'm using django forms for user registration. forms.py class RegistrationForm(forms.Form): username=forms.CharField(label=u'Username',max_length=30) email=forms.CharField(label=u'Email') is_staff=forms.Boo

Re: user registration problem

2007-10-30 Thread Gigs_
thanks On Oct 30, 1:59 pm, Matthias Kestenholz <[EMAIL PROTECTED]> wrote: > On 30.10.2007, at 13:38, Gigs_ wrote: > > > > > im getting this error all the time. > > > IntegrityError at /accounts/register/ > > column username is not unique > > Request Method:POST > > Request URL: http://lo

Re: user registration problem

2007-10-30 Thread Gigs_
its working now. On Oct 30, 1:59 pm, Matthias Kestenholz <[EMAIL PROTECTED]> wrote: > On 30.10.2007, at 13:38, Gigs_ wrote: > > > > > im getting this error all the time. > > > IntegrityError at /accounts/register/ > > column username is not unique > > Request Method:POST > > Request URL:

Re: user registration problem

2007-10-30 Thread Gigs_
that username is not taken. On Oct 30, 1:59 pm, Matthias Kestenholz <[EMAIL PROTECTED]> wrote: > On 30.10.2007, at 13:38, Gigs_ wrote: > > > > > im getting this error all the time. > > > IntegrityError at /accounts/register/ > > column username is not unique > > Request Method:POST > > Reques

Re: user registration problem

2007-10-30 Thread Matthias Kestenholz
On 30.10.2007, at 13:38, Gigs_ wrote: > > im getting this error all the time. > > IntegrityError at /accounts/register/ > column username is not unique > Request Method: POST > Request URL: http://localhost:8000/accounts/register/ > Exception Type: IntegrityError > Exception Value:

user registration problem

2007-10-30 Thread Gigs_
im getting this error all the time. IntegrityError at /accounts/register/ column username is not unique Request Method: POST Request URL:http://localhost:8000/accounts/register/ Exception Type: IntegrityError Exception Value:column username is not unique Exception Loca