X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6d42bc478e3d1bd90eb294464748c21e4de0fc63..HEAD:/src/pdcounter/views.py diff --git a/src/pdcounter/views.py b/src/pdcounter/views.py index 5e3f3be7c..fe14e4e3a 100644 --- a/src/pdcounter/views.py +++ b/src/pdcounter/views.py @@ -1,5 +1,5 @@ -# 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 @@ -18,7 +18,9 @@ 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', { + template_name = 'pdcounter/book_detail.html' + + return render(request, template_name, { 'book': book, 'pd_counter': pd_counter, 'form': form, @@ -35,7 +37,9 @@ def author_detail(request, slug): form = PublishingSuggestForm(initial={"books": author.name + ", \n"}) - return render(request, 'pdcounter/author_detail.html', { + template_name = 'pdcounter/author_detail.html' + + return render(request, template_name, { 'author': author, 'pd_counter': pd_counter, 'form': form,