Merge branch 'master' of http://github.com/fnp/wolnelektury
[wolnelektury.git] / wolnelektury / templates / catalogue / tagged_object_list.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags pagination_tags %}
4
5 {% block title %}{% title_from_tags tags %} w WolneLektury.pl{% endblock %}
6
7 {% block bodyid %}tagged-object-list{% endblock %}
8
9 {% block body %}
10     <h1>{% title_from_tags tags %}</h1>
11     {% breadcrumbs tags %}
12     
13     {% if shelf_is_set and not object_list %}
14     <div id="books-list">
15         <h2>{% trans "Your shelf is empty" %}</h2>
16         <p>{% trans "You can put a book on a shelf by entering page of the reading and clicking \"Put on the shelf\". %}</p>
17     </div>
18     {% else %}
19     {% autopaginate object_list 10 %}
20     <div id="books-list">
21         {% with tags|last as last_tag %}
22         {% if last_tag.has_description %}
23             <div id="description">
24                 {{ last_tag.description|safe }}
25             </div>
26             <div class="clearboth"></div>
27             <div id="toggle-description"><p>{% trans "Toggle description" %} ▲</p></div>
28         {% endif %}
29         {% if shelf_is_set %}
30             <a id="download-shelf" href="{% url download_shelf last_tag.slug %}">
31                 {% trans "Download all books from this shelf" %}
32             </a>
33             <div id="download-shelf-menu" style="display:none;">
34                 <form action="{% url download_shelf last_tag.slug %}" method="get" accept-charset="utf-8" id="download-formats-form" data-formats-feed="{% url shelf_book_formats last_tag.slug %}">
35                     <p>{% trans "Choose books' which you want to download:" %}</p>
36                     <li data-format="pdf"><label for="id_formats_2"><input type="checkbox" name="formats" value="pdf" id="id_formats_2" /> PDF</label> <em><strong>{% trans "for reading" %}</strong> {% trans "and printing using" %} <a href="http://get.adobe.com/reader/">Adobe Reader</a></em></li>
37                     <li data-format="odt"><label for="id_formats_3"><input type="checkbox" name="formats" value="odt" id="id_formats_3" /> ODT</label> <em><strong>{% trans "for reading" %}</strong> {% trans "and editing using" %} <a href="http://pl.openoffice.org/">OpenOffice.org</a></em></li>
38                     <li data-format="txt"><label for="id_formats_4"><input type="checkbox" name="formats" value="txt" id="id_formats_4" /> TXT</label> <em><strong>{% trans "for reading" %}</strong> {% trans "on small displays, for example mobile phones" %}</em></li>
39                     <li data-format="mp3"><label for="id_formats_0"><input type="checkbox" name="formats" value="mp3" id="id_formats_0" /> MP3</label> <em><strong>{% trans "for listening" %}</strong> {% trans "on favourite MP3 player" %}</em></li>
40                     <li data-format="ogg"><label for="id_formats_1"><input type="checkbox" name="formats" value="ogg" id="id_formats_1" /> Ogg Vorbis</label> <em><strong>{% trans "for listening" %}</strong> &mdash; {% trans "open format" %} <a href="http://www.vorbis.com/">{% trans "Xiph.org Foundation" %}</a></em></li>
41                     <li id="download-formats-form-submit-li"><label><input type="submit" name="submit" value="{% trans "Download" %}" id="download-formats-form-submit" disabled="disabled" />&nbsp;<img src="/static/img/indicator.gif" /></label> <span id="updating-formats">{% trans "Updating list of books' formats on the shelf" %}</span><span id="formats-updated" style="display:none;">{% trans "or" %} <a href="#" id="download-formats-form-cancel">{% trans "cancel" %}</a></span></li>
42                     <div class="clearboth"></div>
43                 </form>
44             </div>
45         {% endif %}
46         {% if last_tag.gazeta_link %}
47         <p><a href="{{ last_tag.gazeta_link }}">
48             {% ifequal last_tag.category "author" %}
49                                 {% trans "Read work's study of this author on Lektury.Gazeta.pl" %}
50                         {% endifequal %}
51             {% ifequal last_tag.category "epoch" %}
52                                 {% trans "Read study of epoch" %} {{ last_tag }} {% trans "on Lektury.Gazeta.pl" %}
53                         {% endifequal %}
54         </a></p>
55         {% endif %}
56         {% if last_tag.wiki_link %}
57         <p><a href="{{ last_tag.wiki_link }}">
58             {% ifequal last_tag.category "author" %}
59                                 {% trans "Read article about this author on Wikipedia" %}
60                         {% endifequal %}
61             {% ifequal last_tag.category "epoch"  %}
62                                 {% trans "Read article about epoch" %} {{ last_tag }} {% trans "on Wikipedia" %}
63                         {% endifequal %}
64         </a></p>
65         {% endif %}
66
67         {% if object_list %}
68             <ol>
69             {% for book in object_list %}
70                 <li>
71                     {% if user_is_owner %}
72                         <a href="{% url remove_from_shelf last_tag.slug book.slug %}" class="remove-from-shelf">{% trans "Delete" %}</a>
73                     {% endif %}
74                     {{ book.short_html }}</li>
75             {% endfor %}
76             </ol>
77         {% else %}
78                         {% if only_author %}
79                     {% if last_tag.alive %}
80                                         {% trans "This author's works are copyrighted." %}
81                                 {% else %}{% comment %} Is dead {% endcomment %}
82                     {% if last_tag.in_pd %}
83                                                 {% trans "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon." %} 
84                         {% else %}{% comment %} Is dead, but not yet in public domain {% endcomment %}
85                         <div>
86                                 <p>{% trans "This author's works will become part of public domain and will be allowed to be published without restrictions in:" %}</p>
87                                                         {% include "catalogue/pd_counter.html" %}
88                                                 </div>
89                         {% endif %}
90                 {% endif %}
91                         {% else %}
92                             {% trans "No works of this author found." %}
93                         {% endif %}
94             {% include "info/join_us.html" %}
95         {% endif %}
96         {% endwith %}
97         {% paginate %}
98     </div>
99         {% if object_list %}
100         {% comment %} If we didn't find anything there will be nothing on the right side as well {% endcomment %}
101     <div id="tags-list">
102         <div id="categories-list">
103             {% if categories.author %}
104                 <h2>{% trans "Authors" %}</h2>
105                 {% tag_list categories.author tags %}
106             {% endif %}
107             {% if categories.kind %}
108                 <h2>{% trans "Kinds" %}</h2>
109                 {% tag_list categories.kind tags %}
110             {% endif %}
111             {% if categories.genre %}
112                 <h2>{% trans "Genres" %}</h2>
113                 {% tag_list categories.genre tags %}
114             {% endif %}
115             {% if categories.epoch %}
116                 <h2>{% trans "Epochs" %}Epoki</h2>
117                 {% tag_list categories.epoch tags %}
118             {% endif %}        
119         </div>
120         <div id="themes-list">
121             {% if categories.theme %}
122                 <h2>{% trans "Themes" %}</h2>
123                 {% tag_list categories.theme tags %}
124             {% endif %}
125         </div>
126         <div class="clearboth"></div>
127     </div>
128         {% endif %}
129     {% endif %}
130     <div id="set-window">
131         <div class="header"><a href="#" class="jqmClose">{% trans "Close" %}</a></div>
132         <div class="target">
133             <p><img src="/static/img/indicator.gif" alt="*"/> {% trans "Loading" %}</p>
134         </div>
135     </div>
136 {% endblock %}