detail page getting shape
[wolnelektury.git] / wolnelektury / templates / pdcounter / book_stub_detail.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block titleextra %}{{ book.title }}{% 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
13     <div id="books-list">
14     {% if book.in_pd %}
15                 <p>{% trans "This work is in public domain and will be published on Internet school library of Wolne Lektury soon." %}</p>
16         {% else %}
17             {% if book.pd %}
18                         <p>{% trans "This work will become part of public domain and will be allowed to be published without restrictions in" %}</p>
19             <div id='countdown' data-year='{{ pd_counter }}'></div>
20                         <p>{% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}</p>
21                 {% else %}
22                     <p>{% trans "This work is copyrighted." %}
23                     {% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}</p>
24                 {% endif %}
25         {% endif %}
26     {% include "info/join_us.html" %}
27     </div>
28
29     <div class="column-right block-form">
30         {% include "publishing_suggest.html" %}
31     </div>
32 {% endblock %}