7 lines
218 B
Python
7 lines
218 B
Python
# Create your views here.
|
|
from models import *
|
|
from forms import *
|
|
from django.shortcuts import render_to_response
|
|
|
|
def person_form(request):
|
|
return render_to_response("test/person_form.html", {'form': PersonForm}) |