fixes #2117: upgrade jPlayer to 2.4
[wolnelektury.git] / apps / pdcounter / templates / pdcounter / book_stub_detail.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block titleextra %}{{ book.title }}{% endblock %}
5
6 {% block metadescription %}{% trans "Public domain counter" %}: {{ book.title }}.{% endblock %}
7
8 {% block bodyid %}book-stub-detail{% endblock %}
9
10 {% block body %}
11     <div class="left-column">
12     <h1>{{ book.author }}, {{ book.title }}</h1>
13         <div class="normal-text white-box">
14
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>{% trans "This work will become part of public domain and will be allowed to be published without restrictions in" %}</p>
20             <div id='countdown' data-year='{{ pd_counter }}'></div>
21                         <p>{% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}</p>
22                 {% else %}
23                     <p>{% trans "This work is copyrighted." %}
24                     {% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}</p>
25                 {% endif %}
26         {% endif %}
27     {% include "info/join_us.html" %}
28     </div>
29     </div>
30
31     <div class="right-column block-form">
32         {% include "publishing_suggest.html" %}
33     </div>
34 {% endblock %}