- Added librarian as a submodule.
[wolnelektury.git] / wolnelektury / templates / catalogue / tagged_object_list.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags pagination_tags switch_tag %}
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                 <div id='description-long'>{{ last_tag.description|safe }}</div>
25                 <div id='description-short'>{{ last_tag.description|safe|truncatewords_html:30 }}</div>
26             </div>
27             <div class="clearboth"></div>
28             <div id="toggle-description"><p></p></div>
29         {% endif %}
30         {% if shelf_is_set %}
31             <a id="download-shelf" href="{% url download_shelf last_tag.slug %}">
32                 {% trans "Download all books from this shelf" %}
33             </a>
34             <div id="download-shelf-menu" style="display:none;">
35                 <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 %}">
36                     <p>{% trans "Choose books' formats which you want to download:" %}</p>
37                     <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>
38                     <li data-format="epub"><label for="id_formats_5"><input type="checkbox" name="formats" value="epub" id="id_formats_5" /> EPUB</label> </li>
39                     <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>
40                     <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>
41                     <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>
42                     <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>
43                     <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_URL }}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>
44                     <div class="clearboth"></div>
45                 </form>
46             </div>
47             {% if user_is_owner %}
48             <div id="toggle-share-shelf"><p>{% trans "Share this shelf" %}</p></div>
49             <div id="share-shelf">
50                 <p>{% trans "Copy this link and share it with other people to let them see your shelf." %}
51                 <input id="share-shelf-url" value='http://{{ request.META.HTTP_HOST }}{{ request.path }}' />
52                 </p>
53             </div>
54                         {% endif %}
55         {% endif %}
56         {% if last_tag.gazeta_link %}
57         <p><a href="{{ last_tag.gazeta_link }}">
58             {% switch last_tag.category %}
59                 {% case "author" %}
60                     {% trans "Read work's study of this author on Lektury.Gazeta.pl" %}
61                 {% case "epoch" %}
62                     {% blocktrans %}Read study of epoch {{ last_tag }} on Lektury.Gazeta.pl{% endblocktrans %}
63                 {% case "kind" %}
64                     {% blocktrans %}Read study of kind {{ last_tag }} on Lektury.Gazeta.pl{% endblocktrans %}
65                 {% case "genre" %}
66                     {% blocktrans %}Read study of genre {{ last_tag }} on Lektury.Gazeta.pl{% endblocktrans %}
67                 {% else %}
68                     {% trans "Read related study on Lektury.Gazeta.pl" %}
69             {% endswitch %}
70         </a></p>
71         {% endif %}
72         {% if last_tag.wiki_link %}
73         <p><a href="{{ last_tag.wiki_link }}">
74                 {% switch last_tag.category %}
75                             {% case "author" %}
76                                     {% trans "Read article about this author on Wikipedia" %}
77                                 {% case "epoch" %}
78                     {% blocktrans %}Read article about epoch {{ last_tag }} on Wikipedia{% endblocktrans %}
79                                 {% case "kind" %}
80                     {% blocktrans %}Read article about kind {{ last_tag }} on Wikipedia{% endblocktrans %}
81                                 {% case "genre" %}
82                     {% blocktrans %}Read article about genre {{ last_tag }} on Wikipedia{% endblocktrans %}
83                                 {% else %}
84                                     {% trans "Read related article on Wikipedia" %}
85                         {% endswitch %}
86         </a></p>
87         {% endif %}
88
89         {% if object_list %}
90             <ol>
91             {% for book in object_list %}
92                 <li>
93                     {% if user_is_owner %}
94                         <a href="{% url remove_from_shelf last_tag.slug book.slug %}" class="remove-from-shelf">{% trans "Delete" %}</a>
95                     {% endif %}
96                     {{ book.short_html }}</li>
97             {% endfor %}
98             </ol>
99         {% else %}
100                         {% if only_author %}
101                     {% if last_tag.alive %}
102                                         {% trans "This author's works are copyrighted." %}
103                                 {% else %}{% comment %} Is dead {% endcomment %}
104                     {% if last_tag.in_pd %}
105                                                 <p>{% trans "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon." %}</p>
106                         {% else %}
107                                                 {% comment %} Is dead, but not yet in public domain {% endcomment %}
108                         <div>
109                                 <p>{% trans "This author's works will become part of public domain and will be allowed to be published without restrictions in" %}</p>
110                                                         {% include "catalogue/pd_counter.html" %}
111                             <p>{% trans "Find out why Internet libraries can't publish this author's works." %}</p>
112                                                 </div>
113                         {% endif %}
114                 {% endif %}
115                         {% else %}
116                             {% trans "Sorry! Search cirteria did not match any resources." %}
117                         {% endif %}
118             {% include "info/join_us.html" %}
119         {% endif %}
120         {% endwith %}
121         {% paginate %}
122     </div>
123         {% if object_list %}
124         {% comment %} If we didn't find anything there will be nothing on the right side as well {% endcomment %}
125     <div id="tags-list">
126         <div id="categories-list">
127             {% if categories.author %}
128                 <h2>{% trans "Authors" %}</h2>
129                 {% tag_list categories.author tags %}
130             {% endif %}
131             {% if categories.kind %}
132                 <h2>{% trans "Kinds" %}</h2>
133                 {% tag_list categories.kind tags %}
134             {% endif %}
135             {% if categories.genre %}
136                 <h2>{% trans "Genres" %}</h2>
137                 {% tag_list categories.genre tags %}
138             {% endif %}
139             {% if categories.epoch %}
140                 <h2>{% trans "Epochs" %}</h2>
141                 {% tag_list categories.epoch tags %}
142             {% endif %}
143         </div>
144         <div id="themes-list">
145             {% if categories.theme %}
146                 <h2>{% trans "Themes" %}</h2>
147                 {% tag_list categories.theme tags %}
148             {% endif %}
149         </div>
150         <div class="clearboth"></div>
151     </div>
152         {% endif %}
153     {% endif %}
154     <div id="set-window">
155         <div class="header"><a href="#" class="jqmClose">{% trans "Close" %}</a></div>
156         <div class="target">
157             <p><img src="{{ STATIC_URL }}img/indicator.gif" alt="*"/> {% trans "Loading" %}</p>
158         </div>
159     </div>
160 {% endblock %}