Merge branch 'master' into rwd
[wolnelektury.git] / apps / catalogue / templates / catalogue / book_info.html
index e9f3512..a90ccdc 100755 (executable)
   <p>{% trans "Edited and annotated by:" %}
       {% all_editors book.extra_info %}.</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>
+{% 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>
+{% endif %}