fnp
/
koed-quiz.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
d5547154f3146d9fea8a4748db8ec2c8f2f748a4
[koed-quiz.git]
/
koedquiz
/
views.py
1
from django.shortcuts import render
2
#from django.contrib.sites import Site
3
4
from django.conf import settings
5
from quiz.models import Quiz
6
7
8
def home(request):
9
quiz = Quiz.current()
10
return render(request, "home.html", locals())