Other versions on book detail page.
[wolnelektury.git] / apps / pdcounter / views.py
1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 #
5 from datetime import datetime
6 from django.template import RequestContext
7 from django.shortcuts import render_to_response, get_object_or_404
8 from pdcounter import models
9 from suggest.forms import PublishingSuggestForm
10
11
12 def book_stub_detail(request, slug):
13     book = get_object_or_404(models.BookStub, slug=slug)
14     if book.pd and not book.in_pd():
15         pd_counter = datetime(book.pd, 1, 1)
16
17     form = PublishingSuggestForm(
18             initial={"books": u"%s — %s, \n" % (book.author, book.title)})
19
20     return render_to_response('pdcounter/book_stub_detail.html', locals(),
21         context_instance=RequestContext(request))
22
23
24 def author_detail(request, slug):
25     author = get_object_or_404(models.Author, slug=slug)
26     if not author.alive():
27         pd_counter = datetime(author.goes_to_pd(), 1, 1)
28
29     form = PublishingSuggestForm(initial={"books": author.name + ", \n"})
30
31     return render_to_response('pdcounter/author_detail.html', locals(),
32         context_instance=RequestContext(request))