ISBN in html reader
[wolnelektury.git] / src / catalogue / templates / catalogue / book_info.html
1 {% load i18n %}
2 {% load catalogue_tags %}
3
4 <p>
5   {% if book.extra_info.license %}
6     {% trans "This work is licensed under:" %}
7     <a href="{{ book.extra_info.license }}">{{ book.extra_info.license_description }}</a>
8   {% else %}
9     {% blocktrans %}This work isn't covered by copyright and is part of the
10     public domain, which means it can be freely used, published and
11     distributed. If there are any additional copyrighted materials
12     provided with this work (such as annotations, motifs etc.), those
13     materials are licensed under the
14     <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0</a>
15     license.{% endblocktrans %}
16   {% endif %}
17 </p>
18
19 {% if book.extra_info.source_name %}
20   <p>{% trans "Resource prepared based on:" %} {{ book.extra_info.source_name }}</p>
21 {% endif %}
22
23 {% if book.extra_info.description %}
24   <p>{{ book.extra_info.description }}</p>
25 {% endif %}
26
27 {% if book.extra_info.editor or book.extra_info.technical_editor %}
28   <p>
29     {% if is_picture %}
30       {% trans "Edited by:" %}
31     {% else %}
32       {% trans "Edited and annotated by:" %}
33     {% endif %}
34     {% all_editors book.extra_info %}.
35   </p>
36 {% endif %}
37
38 {% if book.extra_info.publisher %}
39   <p>
40     {% trans "Publisher:" %}
41     {{ book.publisher }}
42   </p>
43 {% endif %}
44
45 {% if book.extra_info.funders %}
46   <p>
47     {% trans "Publication funded by:" %}
48     {% for funder in book.extra_info.funders %}{{ funder }}{% if not forloop.last %}, {% else %}.{% endif %}{% endfor %}
49   </p>
50 {% endif %}
51
52 {% if book.extra_info.cover_by %}
53   <p>
54     {% trans "Cover image by:" %}
55     <a href="{{ book.extra_info.cover_source }}">{{ book.extra_info.cover_by }}</a>.
56   </p>
57 {% endif %}
58
59 {% if book.extra_info.isbn_html %}
60   <p>
61     {{ book.extra_info.isbn_html }}
62   </p>
63 {% endif %}