remove some experimental junk
[wolnelektury.git] / wolnelektury / templates / pdcounter / book_stub_detail.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block title %}{{ book.title }} w WolneLektury.pl{% endblock %}
5
6 {% block bodyid %}book-stub-detail{% endblock %}
7
8 {% block body %}
9     <h1>{{ book.author }}, {{ book.title }}</h1>
10     <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
11         <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>
12     </form>
13
14     <div id="books-list">
15     {% if book.in_pd %}
16                 <p>{% trans "This work is in public domain and will be published on Internet school library of Wolne Lektury soon." %}</p>
17         {% else %}
18             {% if book.pd %}
19                         <p>{% trans "This work will become part of public domain and will be allowed to be published without restrictions in" %}</p>
20                     {% include "pdcounter/pd_counter.html" %}
21                         <p>{% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}</p>
22                 {% else %}
23                     <p>{% trans "This work is copyrighted." %}
24                     {% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}</p>
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 %}