To be able to use the form variable in the template, you have to pass it to the template in render_to_response in the context like so:
return render_to_response('add_user.html', {'form':form}) Check out the documentation for more examples: http://docs.djangoproject.com/en/dev/topics/http/shortcuts/#render-to-response As for the error, there is a code path in your view that doesn't return anything. If request.method == 'POST' and uform.is_valid() returns false, nothing is returned. This can be fixed by changing your view slightly: http://pastebin.com/raw.php?i=wrJbVZ05 That way if it's the first time in the view, or if the form was submitted, but invalid, it will display the add_user.html template. -- 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.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.