mira esto es lo que llevo ::
Código Python:
Ver originalfrom django.http import HttpResponse
class Persona():
nombre=""
apellido=""
email=""
global lista
lista =[]
global mensaje
def vista1(request):
valor="""
<!Doctype html>
<html>
<head>
<title>REGISTRO DE PERSONAL</title>
</head>
<body>
<h1>SISTEMA DE REGISTROS</h1>
<form action="registrar" method="get">
Nombre: <input type="text" name="first_name"><br />
Apellido: <input type="text" name="last_name" />
Correo: <input type="text" name="email" />
<input type="submit" value="Submit" />
</form>
</body>
</html>
"""
return HttpResponse(valor)
def registrar(request):
Objetopersona=Persona()
# Import modules for CGI handling
import cgi, cgitb
# Create instance of FieldStorage
form = cgi.FieldStorage()
Objetopersona.first_name=form.getvalue('first_name')
Objetopersona.last_name=form.getvalue('last_name')
Objetopersona.email=form.getvalue('email')
html="""
<!Doctype html>
<html>
<head>
<title>REGISTRO DE PERSONAL</title>
</head>
<body>
<h1>Registro</h1>
<h2>%s</h2>
</body>
</html>
"""%(first_name)
return HttpResponse(html)