Update lots of things
This commit is contained in:
@ -1,5 +1,12 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
from .forms import CaseStudyForm
|
||||
|
||||
|
||||
def index(request):
|
||||
return render(request, 'map/index.html')
|
||||
|
||||
|
||||
def form(request):
|
||||
form = CaseStudyForm
|
||||
return render(request, 'map/form.html', {'form': form})
|
||||
|
Reference in New Issue
Block a user