Fix for a bug introduced in refactoring: customized pdfs were instantly deleted,...
[wolnelektury.git] / wolnelektury / templates / catalogue / book_info.html
1 {% load i18n %}
2 {% load catalogue_tags %}
3
4 <p>
5     {% if book.get_extra_info_value.license %}
6         {% trans "This work is licensed under:" %}
7         <a href="{{ book.get_extra_info_value.license }}">{{ book.get_extra_info_value.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.get_extra_info_value.source_name %}
20   <p>{% trans "Text prepared based on:" %} {{ book.get_extra_info_value.source_name }}</p>
21 {% endif %}
22
23 {% if book.get_extra_info_value.description %}
24   <p>{{ book.get_extra_info_value.description }}</p>
25 {% endif %}
26
27 {% if book.get_extra_info_value.editor or book.get_extra_info_value.technical_editor %}
28   <p>{% trans "Edited and annotated by:" %}
29       {% all_editors book.get_extra_info_value %}.</p>
30 {% endif %}