X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d10c63f27d1494a04d57a6c805d093089526430a..f9a071b288cec64a55000125a63b62a3b233c3fd:/src/pdcounter/views.py diff --git a/src/pdcounter/views.py b/src/pdcounter/views.py index 5e3f3be7c..c782c0b0f 100644 --- a/src/pdcounter/views.py +++ b/src/pdcounter/views.py @@ -18,7 +18,12 @@ def book_stub_detail(request, slug): 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, @@ -35,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,