5f19220e6125106b17659900af5f6a2cd3a411ce
[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 work is in public domain and will be published on Internet school library of Wolne Lektury soon." %} 
18         {% else %}
19             {% if book.pd %}
20                         {% trans "This work will become part of public domain and will be allowed to be published without restrictions in" %}
21                     {% include "catalogue/pd_counter.html" %}
22                         {% trans "Find out why Internet libraries can't publish this work." %}
23                 {% else %}
24                     {% trans "This work is copyrighted." %}
25                 {% endif %}
26         {% endif %}
27     {% include "info/join_us.html" %}
28     </div>
29
30     <div id="set-window">
31         <div class="header"><a href="#" class="jqmClose">{% trans "Close" %}</a></div>
32         <div class="target">
33             <p><img src="{{ STATIC_URL }}img/indicator.gif" alt="*"/> {% trans "Loading" %}</p>
34         </div>
35     </div>
36 {% endblock %}