fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
other placement fix
[wolnelektury.git]
/
src
/
catalogue
/
views.py
diff --git
a/src/catalogue/views.py
b/src/catalogue/views.py
index
a9cc7e0
..
fc01ad6
100644
(file)
--- a/
src/catalogue/views.py
+++ b/
src/catalogue/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 collections import OrderedDict
import random
#
from collections import OrderedDict
import random
@@
-14,7
+14,7
@@
from django.urls import reverse
from django.db.models import Q, QuerySet
from django.contrib.auth.decorators import login_required, user_passes_test
from django.utils import translation
from django.db.models import Q, QuerySet
from django.contrib.auth.decorators import login_required, user_passes_test
from django.utils import translation
-from django.utils.translation import gettext
as _, gettext
_lazy
+from django.utils.translation import gettext_lazy
from django.views.decorators.cache import never_cache
from django.views.generic import TemplateView
from django.views.decorators.cache import never_cache
from django.views.generic import TemplateView
@@
-159,7
+159,7
@@
class ObjectListView(TemplateView):
class BookList(ObjectListView):
class BookList(ObjectListView):
- title = gettext_lazy('Literatur
e
')
+ title = gettext_lazy('Literatur
a
')
list_type = 'books'
template_name = 'catalogue/book_list.html'
dynamic_template_name = 'catalogue/dynamic_book_list.html'
list_type = 'books'
template_name = 'catalogue/book_list.html'
dynamic_template_name = 'catalogue/dynamic_book_list.html'
@@
-167,8
+167,8
@@
class BookList(ObjectListView):
dynamic_themed_template_name = 'catalogue/dynamic_themed_book_list.html'
orderings = {
dynamic_themed_template_name = 'catalogue/dynamic_themed_book_list.html'
orderings = {
- 'pop': ('-popularity__count',
'najpopularniejsze'
),
- 'alpha': (None,
'alfabetycznie'
),
+ 'pop': ('-popularity__count',
gettext_lazy('najpopularniejsze')
),
+ 'alpha': (None,
gettext_lazy('alfabetycznie')
),
}
default_ordering = 'alpha'
}
default_ordering = 'alpha'
@@
-198,7
+198,7
@@
class BookList(ObjectListView):
class ArtList(ObjectListView):
template_name = 'catalogue/book_list.html'
dynamic_template_name = 'catalogue/dynamic_book_list.html'
class ArtList(ObjectListView):
template_name = 'catalogue/book_list.html'
dynamic_template_name = 'catalogue/dynamic_book_list.html'
- title = gettext_lazy('
Art
')
+ title = gettext_lazy('
Sztuka
')
list_type = 'gallery'
def get_queryset(self):
list_type = 'gallery'
def get_queryset(self):
@@
-221,7
+221,7
@@
class LiteratureView(BookList):
class AudiobooksView(LiteratureView):
class AudiobooksView(LiteratureView):
- title = gettext_lazy('Audiobook
s
')
+ title = gettext_lazy('Audiobook
i
')
list_type = 'audiobooks'
def get_queryset(self):
list_type = 'audiobooks'
def get_queryset(self):
@@
-253,6
+253,8
@@
class TaggedObjectList(BookList):
t for t in self.ctx['tags']
if t is not self.ctx['main_tag']
]
t for t in self.ctx['tags']
if t is not self.ctx['main_tag']
]
+ if len(self.ctx['tags']) == 1 and self.ctx['main_tag'].category == 'author':
+ self.ctx['translation_list'] = self.ctx['main_tag'].book_set.all()
def get_queryset(self):
qs = Book.tagged.with_all(self.ctx['work_tags']).filter(findable=True)
def get_queryset(self):
qs = Book.tagged.with_all(self.ctx['work_tags']).filter(findable=True)
@@
-546,8
+548,12
@@
def book_text(request, slug):
return render(request, 'catalogue/book_text.html', {
'book': book,
return render(request, 'catalogue/book_text.html', {
'book': book,
+ 'extra_info': book.get_extra_info_json(),
'book_text': book_text,
'book_text': book_text,
- 'inserts': DynamicTextInsert.get_all(request)
+ 'inserts': DynamicTextInsert.get_all(request),
+
+ 'club': Club.objects.first(),
+ 'donation_form': DonationStep1Form(),
})
})
@@
-570,13
+576,13
@@
def import_book(request):
exception = pprint.pformat(info[1])
tb = '\n'.join(traceback.format_tb(info[2]))
return HttpResponse(
exception = pprint.pformat(info[1])
tb = '\n'.join(traceback.format_tb(info[2]))
return HttpResponse(
-
_("An error occurred: %(exception)s\n\n%(tb)s")
% {
+
"Błąd: %(exception)s\n\n%(tb)s"
% {
'exception': exception, 'tb': tb
},
content_type='text/plain'
)
'exception': exception, 'tb': tb
},
content_type='text/plain'
)
- return HttpResponse(
_("Book imported successfully")
)
- return HttpResponse(
_("Error importing file: %r")
% book_import_form.errors)
+ return HttpResponse(
"Książka zaimportowana"
)
+ return HttpResponse(
"Błąd podczas importowania pliku: %r"
% book_import_form.errors)
# info views for API
# info views for API
@@
-619,8
+625,8
@@
def download_zip(request, file_format=None, media_format=None, slug=None):
class CustomPDFFormView(AjaxableFormView):
form_class = forms.CustomPDFForm
class CustomPDFFormView(AjaxableFormView):
form_class = forms.CustomPDFForm
- title = gettext_lazy('
Download custom
PDF')
- submit = gettext_lazy('
Download
')
+ title = gettext_lazy('
Stwórz własny
PDF')
+ submit = gettext_lazy('
Pobierz
')
template = 'catalogue/custom_pdf_form.html'
honeypot = True
template = 'catalogue/custom_pdf_form.html'
honeypot = True