Python error: view form.formapp.views.contact did not return HttpResponse object. solve
I am new to python and I am working with a form using views, urls ... my project name is projec1 and my application name is userapp
This is my ** usersapp / views.py **
from django.http import HttpResponse
from django.shortcuts import render_to_response
from django.template import RequestContext
from users.form import ContactForm
def contact(request):
if request.method == "POST":
contact_form = ContactForm(request.POST)
if contact_form.is_valid():
success = True
username = contact_form.cleaned_data['username']
password = contact_form.cleaned_data['password']
else:
contact_form = ContactForm()
return render_to_response('contact.html', {'contact_form': contact_form})
this is my userapp / contact.html
{%block title%}
Contact
{%endblock%}
{%block content%}
<h2>Contact</h2>
<form action ='.' method = 'POST'>
{{contact_form.as_p}}
<input type ="Submit" name = "submit" value = "send">
</form>
{%endblock%}
this is my userapp / form.py
from django import forms
class ContactForm(forms.Form):
username = forms.CharField()
password = forms.CharField()
this is my projec1 / urls.py
from django.conf.urls import patterns, include, url
from django.conf.urls.defaults import *
from users.views import login
from users.views import contact
urlpatterns = patterns('',
('^contact/$', contact),
)
im facing this error
TypeError at /
Error when calling the metaclass bases
module.__init__() takes at most 2 arguments (3 given)
Request Method: GET
Request URL: http://127.0.0.1:8000/
Django Version: 1.4.3
Exception Type: TypeError
Exception Value:
Error when calling the metaclass bases
module.__init__() takes at most 2 arguments (3 given)
my mistake:
NameError at /contact
name 'forms' is not defined
Request Method: GET
Request URL: http://127.0.0.1:8000/contact
Django Version: 1.4.3
Exception Type: NameError
Exception Value:
name 'forms' is not defined
Exception Location: C:\Users\Documents\MyProjects\projec1\users\form.py
in<module>,line 2
Python Executable: C:\Python27\python.exe
plz tell someone, thanks in advance
+3
raghu
source
to share
1 answer
The definition of the form class was incorrect, which probably caused this error:
from django import forms
# Inherit from `forms.Form`, not from `forms`:
class ContactForm(forms.Form):
username = forms.CharField()
password = forms.CharField()
There are several issues with the view function as well:
def contact(request):
if request.method == "POST":
contact_form = ContactForm(request.POST)
# Not `contact_form is valid()`:
if contact_form.is_valid():
success = True
# `cleaned_data` is all lowercase:
username = contact_form.cleaned_data['username']
password = contact_form.cleaned_data['password']
else:
contact_form = ContactForm()
# You always want to return a response. Putting the return statement
# here will fix the error mentioned in the question title. The
# second argument makes `contact_form` available from the template:
return render_to_response('contact.html', {
'contact_form': contact_form
})
+1
Jakub roztocil
source
to share