More views, and likes working.
[wolnelektury.git] / src / pdcounter / views.py
index 3be24c0..c782c0b 100644 (file)
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 #
@@ -17,9 +16,14 @@ def book_stub_detail(request, slug):
     else:
         pd_counter = None
 
-    form = PublishingSuggestForm(initial={"books": u"%s — %s, \n" % (book.author, book.title)})
+    form = PublishingSuggestForm(initial={"books": "%s — %s, \n" % (book.author, book.title)})
 
-    return render(request, 'pdcounter/book_stub_detail.html', {
+    if request.EXPERIMENTS['layout'].value:
+        template_name = 'pdcounter/2022/book_detail.html'
+    else:
+        template_name = 'pdcounter/book_detail.html'
+
+    return render(request, template_name, {
         'book': book,
         'pd_counter': pd_counter,
         'form': form,
@@ -36,7 +40,12 @@ def author_detail(request, slug):
 
     form = PublishingSuggestForm(initial={"books": author.name + ", \n"})
 
-    return render(request, 'pdcounter/author_detail.html', {
+    if request.EXPERIMENTS['layout'].value:
+        template_name = 'pdcounter/2022/author_detail.html'
+    else:
+        template_name = 'pdcounter/author_detail.html'
+
+    return render(request, template_name, {
         'author': author,
         'pd_counter': pd_counter,
         'form': form,