X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/f9a071b288cec64a55000125a63b62a3b233c3fd..e24e657ebf536f55c1bde66bd41563fae30a98b0:/src/pdcounter/views.py?ds=sidebyside

diff --git a/src/pdcounter/views.py b/src/pdcounter/views.py
index c782c0b0f..ca61f161f 100644
--- a/src/pdcounter/views.py
+++ b/src/pdcounter/views.py
@@ -18,10 +18,7 @@ def book_stub_detail(request, slug):
 
     form = PublishingSuggestForm(initial={"books": "%s — %s, \n" % (book.author, book.title)})
 
-    if request.EXPERIMENTS['layout'].value:
-        template_name = 'pdcounter/2022/book_detail.html'
-    else:
-        template_name = 'pdcounter/book_detail.html'
+    template_name = 'pdcounter/book_detail.html'
 
     return render(request, template_name, {
         'book': book,
@@ -40,10 +37,7 @@ def author_detail(request, slug):
 
     form = PublishingSuggestForm(initial={"books": author.name + ", \n"})
 
-    if request.EXPERIMENTS['layout'].value:
-        template_name = 'pdcounter/2022/author_detail.html'
-    else:
-        template_name = 'pdcounter/author_detail.html'
+    template_name = 'pdcounter/author_detail.html'
 
     return render(request, template_name, {
         'author': author,