changes default filesystem cache location
[wolnelektury.git] / wolnelektury / templates / pdcounter / author_detail.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block title %}{{ author.name }} w WolneLektury.pl{% 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     <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
13         <p>{{ form.q }} <input type="submit" value="{% trans "Search" %}" /> <strong>{% trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to main page" %}</a></p>
14     </form>
15
16     <div id="books-list">
17         {% if author.has_description %}
18             <div id="description">
19                 <div id='description-long'>{{ author.description|safe }}</div>
20                 <div id='description-short'>{{ author.description|safe|truncatewords_html:30 }}</div>
21             </div>
22             <div class="clearboth"></div>
23             <div id="toggle-description"><p></p></div>
24         {% endif %}
25         {% if author.gazeta_link %}
26         <p><a href="{{ author.gazeta_link }}">
27             {% trans "Read work's study of this author on Lektury.Gazeta.pl" %}
28         </a></p>
29         {% endif %}
30         {% if author.wiki_link %}
31         <p><a href="{{ author.wiki_link }}">
32             {% trans "Read article about this author on Wikipedia" %}
33         </a></p>
34         {% endif %}
35
36         {% if author.alive %}
37             <p>{% trans "This author's works are copyrighted." %}
38             {% 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>
39         {% else %}
40             {% if author.in_pd %}
41                 <p>{% trans "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon." %}</p>
42             {% else %}
43                 <div>
44                     <p>{% trans "This author's works will become part of public domain and will be allowed to be published without restrictions in" %}</p>
45                     {% include "pdcounter/pd_counter.html" %}
46                     <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>
47                 </div>
48             {% endif %}
49         {% endif %}
50         {% include "info/join_us.html" %}
51     </div>
52
53     <div class="column-right block-form">
54         {% include "publishing_suggest.html" %}
55     </div>
56 {% endblock %}