{% load i18n %}
{% load catalogue_tags %}
+{% load thumbnail %}
{% with extra_info=book.get_extra_info_json %}
<p>
<p>{{ extra_info.description }}</p>
{% endif %}
+ {% if extra_info.logo %}
+ {% thumbnail extra_info.logo '300x200' as th %}
+ <img src="{{ th.url }}" style="width: 300px; max-width: 100%;"
+ alt="{{ extra_info.logo_alt|default:'Sponsor' }}"
+ >
+ {% endthumbnail %}
+ {% endif %}
+
{% if extra_info.editor or extra_info.technical_editor %}
<p>
- {% if is_picture %}
- {% trans "Opracowanie redakcyjne:" %}
- {% else %}
- {% trans "Opracowanie redakcyjne i przypisy:" %}
- {% endif %}
+ {% trans "Opracowanie redakcyjne i przypisy:" %}
{% all_editors extra_info %}.
</p>
{% endif %}