Merge branch 'production' into pretty
[wolnelektury.git] / wolnelektury / templates / pdcounter / author_detail.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block titleextra %}{{ author.name }}{% endblock %}
5
6 {% block metadescription %}Licznik domeny publicznej: {{author.name}}.{% endblock %}
7
8 {% block bodyid %}author-detail{% endblock %}
9
10 {% block body %}
11     <h1>{{ author.name }}</h1>
12
13     <div id="books-list">
14         {% if author.has_description %}
15             <div id="description">
16                 <div id='description-long'>{{ author.description|safe }}</div>
17                 <div id='description-short'>{{ author.description|safe|truncatewords_html:30 }}</div>
18             </div>
19             <div class="clearboth"></div>
20             <div id="toggle-description"><p></p></div>
21         {% endif %}
22         {% if author.gazeta_link %}
23         <p><a href="{{ author.gazeta_link }}">
24             {% trans "Read work's study of this author on Lektury.Gazeta.pl" %}
25         </a></p>
26         {% endif %}
27         {% if author.wiki_link %}
28         <p><a href="{{ author.wiki_link }}">
29             {% trans "Read article about this author on Wikipedia" %}
30         </a></p>
31         {% endif %}
32
33         {% if author.alive %}
34             <p>{% trans "This author's works are copyrighted." %}
35             {% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this author's works." %}</p>
36         {% else %}
37             {% if author.in_pd %}
38                 <p>{% trans "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon." %}</p>
39             {% else %}
40                 <div>
41                     <p>{% trans "This author's works will become part of public domain and will be allowed to be published without restrictions in" %}</p>
42                     <div id='countdown' data-year='{{ pd_counter }}'></div>
43                     <p>{% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this author's works." %}</p>
44                 </div>
45             {% endif %}
46         {% endif %}
47         {% include "info/join_us.html" %}
48     </div>
49
50     <div class="column-right block-form">
51         {% include "publishing_suggest.html" %}
52     </div>
53 {% endblock %}