-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
#
from datetime import datetime
from django.shortcuts import render, get_object_or_404
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_stub_detail.html'
+ template_name = 'pdcounter/book_detail.html'
return render(request, template_name, {
'book': book,
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,