fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Translators as authors.
[wolnelektury.git]
/
src
/
pdcounter
/
views.py
diff --git
a/src/pdcounter/views.py
b/src/pdcounter/views.py
index
753c9e4
..
fe14e4e
100644
(file)
--- a/
src/pdcounter/views.py
+++ b/
src/pdcounter/views.py
@@
-1,5
+1,5
@@
-# This file is part of Wolne
l
ektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja
Nowoczesna Polska
. See NOTICE for more information.
+# This file is part of Wolne
L
ektury, 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
#
from datetime import datetime
from django.shortcuts import render, get_object_or_404
@@
-18,10
+18,7
@@
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)})
- 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,
return render(request, template_name, {
'book': book,
@@
-40,10
+37,7
@@
def author_detail(request, slug):
form = PublishingSuggestForm(initial={"books": author.name + ", \n"})
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,
return render(request, template_name, {
'author': author,