fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixes
[wolnelektury.git]
/
src
/
pdcounter
/
views.py
diff --git
a/src/pdcounter/views.py
b/src/pdcounter/views.py
index
5e3f3be
..
753c9e4
100644
(file)
--- 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)})
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_stub_detail.html'
+
+ return render(request, template_name, {
'book': book,
'pd_counter': pd_counter,
'form': form,
'book': book,
'pd_counter': pd_counter,
'form': form,
@@
-35,7
+40,12
@@
def author_detail(request, slug):
form = PublishingSuggestForm(initial={"books": author.name + ", \n"})
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,
'author': author,
'pd_counter': pd_counter,
'form': form,