X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/9a938c8b406ce05e3bca4a5a483d473ece9e17b0..18aa8ca52202003e5628a882f3469a04d905cc05:/src/pdcounter/views.py diff --git a/src/pdcounter/views.py b/src/pdcounter/views.py index b8a685eb8..fe14e4e3a 100644 --- a/src/pdcounter/views.py +++ b/src/pdcounter/views.py @@ -1,10 +1,8 @@ -# -*- coding: utf-8 -*- -# 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.template import RequestContext -from django.shortcuts import render_to_response, get_object_or_404 +from django.shortcuts import render, get_object_or_404 from django.views.decorators import cache from suggest.forms import PublishingSuggestForm from . import models @@ -18,13 +16,15 @@ def book_stub_detail(request, slug): else: pd_counter = None - form = PublishingSuggestForm(initial={"books": u"%s — %s, \n" % (book.author, book.title)}) + form = PublishingSuggestForm(initial={"books": "%s — %s, \n" % (book.author, book.title)}) - return render_to_response('pdcounter/book_stub_detail.html', { + template_name = 'pdcounter/book_detail.html' + + return render(request, template_name, { 'book': book, 'pd_counter': pd_counter, 'form': form, - }, context_instance=RequestContext(request)) + }) @cache.never_cache @@ -37,8 +37,10 @@ def author_detail(request, slug): form = PublishingSuggestForm(initial={"books": author.name + ", \n"}) - return render_to_response('pdcounter/author_detail.html', { + template_name = 'pdcounter/author_detail.html' + + return render(request, template_name, { 'author': author, 'pd_counter': pd_counter, 'form': form, - }, context_instance=RequestContext(request)) + })