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