X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6280673f35e13e75e81c5b7821bd2a44a1831eab..357027375ff8867f42ca34bcbfb5a78b5b185fc3:/src/pdcounter/views.py diff --git a/src/pdcounter/views.py b/src/pdcounter/views.py new file mode 100644 index 000000000..e5b4421ce --- /dev/null +++ b/src/pdcounter/views.py @@ -0,0 +1,35 @@ +# -*- 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. +# +from datetime import datetime +from django.template import RequestContext +from django.shortcuts import render_to_response, get_object_or_404 +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) + 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)}) + + return render_to_response('pdcounter/book_stub_detail.html', locals(), + 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(): + pd_counter = datetime(author.goes_to_pd(), 1, 1) + + form = PublishingSuggestForm(initial={"books": author.name + ", \n"}) + + return render_to_response('pdcounter/author_detail.html', locals(), + context_instance=RequestContext(request))