Initial Checkin
This commit is contained in:
15
refundom/webpage/views.py
Normal file
15
refundom/webpage/views.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
|
||||
def index(request):
|
||||
return render(request, "webpage/index.html", {})
|
||||
|
||||
def contact(request):
|
||||
return render(request, "webpage/contact.html", {})
|
||||
|
||||
def process(request):
|
||||
return render(request, "webpage/process.html", {})
|
||||
|
||||
def about_us(request):
|
||||
return render(request, "webpage/about_us.html", {})
|
||||
Reference in New Issue
Block a user