fixes
[wolnelektury.git] / src / pdcounter / templates / pdcounter / pd_author_box.html
1 {% spaceless %}
2   {% load i18n %}
3   {% load catalogue_tags %}
4
5   <div class="white-box normal-text">
6     <h2><a href="{{ author.get_absolute_url }}">{{ author.name }}</a></h2>
7     {% if author.alive %}
8       <p>
9         {% trans "This author's works are copyrighted." %}
10         {% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this author's works." %}
11       </p>
12     {% else %}
13       {% if author.in_pd %}
14         <p>{% trans "This author's works are in public domain, but they were not yet published on Internet library of Wolne Lektury." %}</p>
15       {% else %}
16         <div>
17           <p>
18             {% trans "This author's works will become part of public domain and will be allowed to be published without restrictions in the year" %} {{ author.goes_to_pd }}.
19           </p>
20           <p>
21             {% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this author's works." %}
22           </p>
23         </div>
24       {% endif %}
25     {% endif %}
26   </div>
27 {% endspaceless %}