Index: trunk/quiz/quizapp/views.py =================================================================== diff -u -r8 -r9 --- trunk/quiz/quizapp/views.py (.../views.py) (revision 8) +++ trunk/quiz/quizapp/views.py (.../views.py) (revision 9) @@ -11,6 +11,9 @@ 'beat': { 'simple_past':'beat', 'past_participle':'beaten', 'translation':'battre' }, } +class TestQuizView(TemplateView): + template_name = 'testquiz.html' + # Create your views here. class HomePageView(TemplateView): template_name = 'home.html'