wider menu in book/picture viewers
[wolnelektury.git] / src / catalogue / templates / catalogue / book_info.html
index e245335..9489761 100755 (executable)
@@ -2,18 +2,18 @@
 {% load catalogue_tags %}
 
 <p>
-    {% if book.extra_info.license %}
-        {% trans "This work is licensed under:" %}
-        <a href="{{ book.extra_info.license }}">{{ book.extra_info.license_description }}</a>
-    {% else %}
-        {% blocktrans %}This work isn't covered by copyright and is part of the
-        public domain, which means it can be freely used, published and
-        distributed. If there are any additional copyrighted materials
-        provided with this work (such as annotations, motifs etc.), those
-        materials are licensed under the 
-        <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0</a>
-        license.{% endblocktrans %}
-    {% endif %}
+  {% if book.extra_info.license %}
+    {% trans "This work is licensed under:" %}
+    <a href="{{ book.extra_info.license }}">{{ book.extra_info.license_description }}</a>
+  {% else %}
+    {% blocktrans %}This work isn't covered by copyright and is part of the
+    public domain, which means it can be freely used, published and
+    distributed. If there are any additional copyrighted materials
+    provided with this work (such as annotations, motifs etc.), those
+    materials are licensed under the
+    <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0</a>
+    license.{% endblocktrans %}
+  {% endif %}
 </p>
 
 {% if book.extra_info.source_name %}
 {% endif %}
 
 {% if book.extra_info.editor or book.extra_info.technical_editor %}
-  <p>{% if is_picture %}
-        {% trans "Edited by:" %}
+  <p>
+    {% if is_picture %}
+      {% trans "Edited by:" %}
     {% else %}
-        {% trans "Edited and annotated by:" %}
+      {% trans "Edited and annotated by:" %}
     {% endif %}
-      {% all_editors book.extra_info %}.</p>
+    {% all_editors book.extra_info %}.
+  </p>
+{% endif %}
+
+{% if book.extra_info.publisher %}
+  <p>
+    {% trans "Publisher:" %}
+    {{ book.publisher }}
+  </p>
 {% endif %}
 
 {% if book.extra_info.funders %}
-  <p>{% trans "Publication funded by:" %}
-      {% for funder in book.extra_info.funders %}{{ funder }}{% if not forloop.last %}, {% else %}.{% endif %}{% endfor %}
+  <p>
+    {% trans "Publication funded by:" %}
+    {% for funder in book.extra_info.funders %}{{ funder }}{% if not forloop.last %}, {% else %}.{% endif %}{% endfor %}
   </p>
 {% endif %}
 
 {% if book.extra_info.cover_by %}
-  <p>{% trans "Cover image by:" %}
-      <a href="{{ book.extra_info.cover_source }}">
-      {{ book.extra_info.cover_by }}</a>.</p>
+  <p>
+    {% trans "Cover image by:" %}
+    <a href="{{ book.extra_info.cover_source }}">{{ book.extra_info.cover_by }}</a>.
+  </p>
 {% endif %}