blob: 4f66a21a2a81d7a832b3fac7fa56b614b1769b06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
from django.http import HttpResponse, HttpResponseRedirect
from django.core.context_processors import csrf
from django.views.decorators.csrf import csrf_exempt
from django.shortcuts import render
def home(request):
return render(request, 'website/templates/home.html')
def page(request):
return render(request, 'website/templates/page.html')
def venue(request):
return render(request, 'website/templates/venue.html')
def contact(request):
return render(request, 'website/templates/contact.html')
def register(request):
return render(request, 'website/templates/register.html')
|