X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/14c90138f071d90f241d3cae13d3409d81c04599..4b4e3aa4d7f75f4bee66b3f3098cbeb756adb8d0:/apps/pdcounter/views.py diff --git a/apps/pdcounter/views.py b/apps/pdcounter/views.py index edad76b75..e5b4421ce 100644 --- a/apps/pdcounter/views.py +++ b/apps/pdcounter/views.py @@ -5,13 +5,16 @@ from datetime import datetime from django.template import RequestContext from django.shortcuts import render_to_response, get_object_or_404 -from pdcounter import models +from django.views.decorators import cache from suggest.forms import PublishingSuggestForm +from . import models +@cache.never_cache def book_stub_detail(request, slug): book = get_object_or_404(models.BookStub, slug=slug) - pd_counter = datetime(book.pd, 1, 1) + if book.pd and not book.in_pd(): + pd_counter = datetime(book.pd, 1, 1) form = PublishingSuggestForm( initial={"books": u"%s — %s, \n" % (book.author, book.title)}) @@ -20,9 +23,10 @@ def book_stub_detail(request, slug): context_instance=RequestContext(request)) +@cache.never_cache def author_detail(request, slug): author = get_object_or_404(models.Author, slug=slug) - if not author.alive: + if not author.alive(): pd_counter = datetime(author.goes_to_pd(), 1, 1) form = PublishingSuggestForm(initial={"books": author.name + ", \n"})