finished product

This commit is contained in:
2018-04-27 10:12:40 -06:00
commit 6b6f5ff1f4
49 changed files with 1266 additions and 0 deletions

14
main/views.py Normal file
View File

@@ -0,0 +1,14 @@
from django.shortcuts import render
from django.http import HttpResponse
from django.template import loader
from django.utils import timezone
from django.urls import reverse
from django.http import HttpResponseRedirect
# Create your views here.
def index(request):
template = loader.get_template('main/index.html')
context = {
}
return HttpResponse(template.render(context, request))