fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Uncrazy the caching, more.
[wolnelektury.git]
/
src
/
pdcounter
/
views.py
diff --git
a/src/pdcounter/views.py
b/src/pdcounter/views.py
index
b8a685e
..
3be24c0
100644
(file)
--- a/
src/pdcounter/views.py
+++ b/
src/pdcounter/views.py
@@
-3,8
+3,7
@@
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
from datetime import datetime
# Copyright © Fundacja Nowoczesna Polska. 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
from django.views.decorators import cache
from suggest.forms import PublishingSuggestForm
from . import models
@@
-20,11
+19,11
@@
def book_stub_detail(request, slug):
form = PublishingSuggestForm(initial={"books": u"%s — %s, \n" % (book.author, book.title)})
form = PublishingSuggestForm(initial={"books": u"%s — %s, \n" % (book.author, book.title)})
- return render
_to_response(
'pdcounter/book_stub_detail.html', {
+ return render
(request,
'pdcounter/book_stub_detail.html', {
'book': book,
'pd_counter': pd_counter,
'form': form,
'book': book,
'pd_counter': pd_counter,
'form': form,
- }
, context_instance=RequestContext(request)
)
+ })
@cache.never_cache
@cache.never_cache
@@
-37,8
+36,8
@@
def author_detail(request, slug):
form = PublishingSuggestForm(initial={"books": author.name + ", \n"})
form = PublishingSuggestForm(initial={"books": author.name + ", \n"})
- return render
_to_response(
'pdcounter/author_detail.html', {
+ return render
(request,
'pdcounter/author_detail.html', {
'author': author,
'pd_counter': pd_counter,
'form': form,
'author': author,
'pd_counter': pd_counter,
'form': form,
- }
, context_instance=RequestContext(request)
)
+ })