hi group. Please look at the code below. The form works fine if there is an error. However, if the form is ok, it's not processing the "form.is_valid" section of code. As programmed, the form should error out and say "spam" in an assertion but it doesn't get there. I can assert the form before the "if form.is_valid():" line of code and see the post data in it fine.
As it stands, the form blinks when you click the button if everything is filled out. The urls and the form is shown at the bottom: def ListUsers(request,msg=0): #process or just push form if request.method=='POST': form=FrmUser(request.POST) if form.is_valid(): #process valid form here assert False, "spam" #save the user here username = manage_cleantext(request.POST.get ('username','')) password = manage_cleantext(request.POST.get ('password','')) email = manage_cleantext(request.POST.get('email','')) assert False, username newuser=User.objects.create_user(username,email,password) #this actually creates and encrypts the password with the user record # add additional data newuser.first_name = manage_cleantext(request.POST.get ('first_name','')) newuser.last_name = manage_cleantext(request.POST.get ('last_name','')) newuser.is_active=1 newuser.is_staff = manage_cleantext(request.POST.get ('is_staff','')) newuser.is_superuser=0 newuser.save() return HttpResponseRedirect ('/manage/authentication/users/ list/1/') else: #form is not valid so return form with error messages msg=0 return render_to_response ('authentication/listusers.html', {'msg':msg,'form':form},context_instance=RequestContext(request)) else: # form has not yet been posted so do so now msg=0 form=FrmUser() # establish a new instance of an empty form return render_to_response ('authentication/listusers.html', {'msg':msg,'form':form},context_instance=RequestContext(request)) urls.py ... from django.conf.urls.defaults import * urlpatterns = patterns('authentication.views', (r'^users/list/(?P<msg>[0-9]+)/?','ListUsers'), ) forms.py... from django import forms active_choices=( (1,'Yes'), (0,'No'), ) # used to add and edit users in the system class FrmUser (forms.Form): username = forms.CharField (max_length=50, required=True, widget=forms.TextInput(attrs={'class':'textbox'})) first_name = forms.CharField (max_length=50, required=True, widget=forms.TextInput(attrs={'class':'textbox'})) last_name = forms.CharField (max_length=50, required=True, widget=forms.TextInput(attrs={'class':'textbox'})) email = forms.EmailField (max_length=75, required=True, widget=forms.TextInput(attrs={'class':'largetextbox'})) password = forms.CharField (max_length=15, required=True, widget=forms.PasswordInput(attrs={'class':'textbox'})) is_active = forms.ChoiceField (required=True, choices=active_choices,widget=forms.Select(attrs={'class':'dropbox'})) is_staff = forms.ChoiceField (required=True, choices=active_choices,widget=forms.Select(attrs={'class':'dropbox'})) --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---