2013-05-07 16:35:12 +08:00

8 lines
174 B
Python

from django.shortcuts import render
from app.forms import ExampleForm
def index(request):
form = ExampleForm()
return render(request, 'index.html', {'form': form})