changes default filesystem cache location
[wolnelektury.git] / wolnelektury / templates / pdcounter / book_stub_detail.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block title %}{{ book.title }} w WolneLektury.pl{% endblock %}
5
6 {% block metadescription %}Licznik domeny publicznej: {{ book.title }}.{% endblock %}
7
8 {% block bodyid %}book-stub-detail{% endblock %}
9
10 {% block body %}
11     <h1>{{ book.author }}, {{ book.title }}</h1>
12     <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
13         <p>{{ form.q }} <input type="submit" value="{% trans "Search" %}" /> <strong>{% trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to main page" %}</a></p>
14     </form>
15
16     <div id="books-list">
17     {% if book.in_pd %}
18                 <p>{% trans "This work is in public domain and will be published on Internet school library of Wolne Lektury soon." %}</p>
19         {% else %}
20             {% if book.pd %}
21                         <p>{% trans "This work will become part of public domain and will be allowed to be published without restrictions in" %}</p>
22                     {% include "pdcounter/pd_counter.html" %}
23                         <p>{% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}</p>
24                 {% else %}
25                     <p>{% trans "This work is copyrighted." %}
26                     {% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}</p>
27                 {% endif %}
28         {% endif %}
29     {% include "info/join_us.html" %}
30     </div>
31
32     <div class="column-right block-form">
33         {% include "publishing_suggest.html" %}
34     </div>
35 {% endblock %}