50eef63fbf45571b0fa7267da2c84751beba0722
[wolnelektury.git] / src / pdcounter / templates / pdcounter / author_detail.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load time_tags %}
4
5 {% block titleextra %}{{ author.name }}{% endblock %}
6
7 {% block metadescription %}{% trans "Public domain counter" %}: {{author.name}}.{% endblock %}
8
9 {% block bodyid %}author-detail{% endblock %}
10
11 {% block body %}
12
13     <div class="left-column">
14     <h1>{{ author.name }}</h1>
15         <div class="normal-text white-box">
16         {% if author.has_description %}
17             <div id="description">
18                 <div id='description-long'>{{ author.description|safe }}</div>
19                 <div id='description-short'>{{ author.description|safe|truncatewords_html:30 }}</div>
20             </div>
21             <div class="clearboth"></div>
22             <div id="toggle-description"><p></p></div>
23         {% endif %}
24         {% if author.gazeta_link %}
25         <p><a href="{{ author.gazeta_link }}">
26             {% trans "Read work's study of this author on Lektury.Gazeta.pl" %}
27         </a></p>
28         {% endif %}
29         {% if author.wiki_link %}
30         <p><a href="{{ author.wiki_link }}">
31             {% trans "Read article about this author on Wikipedia" %}
32         </a></p>
33         {% endif %}
34
35         {% if author.alive %}
36             <p>{% trans "This author's works are copyrighted." %}
37             {% 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>
38         {% else %}
39             {% if author.in_pd %}
40                 <p>{% trans "This author's works are in public domain and will be published on Internet library of Wolne Lektury soon." %}</p>
41             {% else %}
42                 <div>
43                     <p>{% trans "This author's works will become part of public domain and will be allowed to be published without restrictions in" %}</p>
44                     <div class='countdown' data-until='{{ pd_counter|date_to_utc|utc_for_js }}'></div>
45                     <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>
46                 </div>
47             {% endif %}
48         {% endif %}
49         {% include "info/join_us.html" %}
50     </div>
51     </div>
52
53     <div class="right-column block-form">
54         {% include "publishing_suggest.html" %}
55     </div>
56 {% endblock %}