db1a2997ad5a5f764c64ddb1ed30bdeb069abc78
[wolnelektury.git] / src / pdcounter / templates / pdcounter / book_stub_detail.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3 {% load time_tags %}
4
5 {% block titleextra %}{{ book.title }}{% endblock %}
6
7 {% block metadescription %}{% trans "Public domain counter" %}: {{ book.title }}.{% endblock %}
8
9 {% block bodyid %}book-stub-detail{% endblock %}
10
11 {% block body %}
12   <div class="left-column">
13     <h1>{{ book.author }}, {{ book.title }}</h1>
14     <div class="normal-text white-box">
15       {% if book.in_pd %}
16         <p>{% trans "This work is in public domain and will be published on Internet library of Wolne Lektury soon." %}</p>
17       {% else %}
18         {% if book.pd %}
19           <p>
20             {% trans "This work will become part of public domain and will be allowed to be published without restrictions in" %}
21           </p>
22           <div class='countdown' data-until='{{ pd_counter|date_to_utc|utc_for_js }}'></div>
23           <p>
24             {% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}
25           </p>
26         {% else %}
27           <p>
28             {% trans "This work is copyrighted." %}
29             {% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}
30           </p>
31         {% endif %}
32       {% endif %}
33       {% include "info/join_us.html" %}
34     </div>
35   </div>
36
37   <div class="right-column block-form">
38     {% include "publishing_suggest.html" %}
39   </div>
40 {% endblock %}