From e5486e90f48433c3f33592a7d8003b5716e138b3 Mon Sep 17 00:00:00 2001 From: Ross Date: Sat, 16 Oct 2021 22:05:38 +0100 Subject: [PATCH] . --- anatomy/urls.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/anatomy/urls.py b/anatomy/urls.py index 8f56cf6b..2160dd4c 100644 --- a/anatomy/urls.py +++ b/anatomy/urls.py @@ -9,10 +9,12 @@ urlpatterns = [ path("", views.AnatomyExamViews.index, name="index"), path( "question/", - cache_page(60 * 1)(views.AnatomyQuestionView.as_view()), + views.AnatomyQuestionView.as_view(), name="question_list", ), - path("question//", views.GenericViews.question_detail, name="question_detail"), + path( + "question//", views.GenericViews.question_detail, name="question_detail" + ), path( "question/create/", views.AnatomyQuestionCreate.as_view(),