640d68ebe07913ec8ee7fac66a929d0bc57df02c
[wolnelektury.git] / apps / pdcounter / templates / pdcounter / book_stub_detail.html
1 {% extends "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
16     {% if book.in_pd %}
17                 <p>{% trans "This work is in public domain and will be published on Internet library of Wolne Lektury soon." %}</p>
18         {% else %}
19             {% if book.pd %}
20                         <p>{% trans "This work will become part of public domain and will be allowed to be published without restrictions in" %}</p>
21             <div class='countdown' data-until='{{ pd_counter|date_to_utc|utc_for_js }}'></div>
22                         <p>{% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}</p>
23                 {% else %}
24                     <p>{% trans "This work is copyrighted." %}
25                     {% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}</p>
26                 {% endif %}
27         {% endif %}
28     {% include "info/join_us.html" %}
29     </div>
30     </div>
31
32     <div class="right-column block-form">
33         {% include "publishing_suggest.html" %}
34     </div>
35 {% endblock %}