Further i18n.
[wolnelektury.git] / wolnelektury / templates / catalogue / book_stub_detail.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags pagination_tags %}
4
5 {% block title %}{{ book.title }} w WolneLektury.pl{% endblock %}
6
7 {% block bodyid %}book-stub-detail{% endblock %}
8
9 {% block body %}
10     <h1>{{ book.title }}, {{ book.author }}</h1>
11     <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
12         <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>
13     </form>
14     
15     <div id="books-list">
16     {% if book.in_pd %}
17                 {% trans "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon." %} 
18         {% else %}
19             {% if book.pd %}
20                         {% trans "This author's works will become part of public domain and will be allowed to be published without restrictions in:" %}
21                     {% include "catalogue/pd_counter.html" %}
22                 {% else %}
23                     {% trans "This author's works are copyrighted." %}
24                 {% endif %}
25         {% endif %}
26     {% include "info/join_us.html" %}
27     </div>
28
29     <div id="set-window">
30         <div class="header"><a href="#" class="jqmClose">{% trans "Close" %}</a></div>
31         <div class="target">
32             <p><img src="/static/img/indicator.gif" alt="*"/> {% trans "Loading" %}</p>
33         </div>
34     </div>
35 {% endblock %}