{% extends "catalogue/viewer_base.html" %}
{% load i18n %}
-{% load static from staticfiles %}
+{% load static from static %}
{% load catalogue_tags %}
{% load thumbnail %}
-{% load ssi_include from ssify %}
{% block title %}{{ picture.pretty_title }}{% endblock %}
<li>
<a href="{{ picture.get_absolute_url }}" id="menu-book" data-box="book-short">
- <img src="{% thumbnail picture.image_file '80x200' as thumb %}{{ thumb.url }}{% empty %}{{ picture.image_file.url }}{% endthumbnail %}"
- width="80"
+ <img src="{% thumbnail picture.image_file '120x300' as thumb %}{{ thumb.url }}{% empty %}{{ picture.image_file.url }}{% endthumbnail %}"
+ width="120"
alt="{{ picture.pretty_title }}"
title="{{ picture.pretty_title }}">
</a>
<li id="sponsors">
{% for sponsor in sponsors %}
- {% thumbnail sponsor.logo "80x200" as logo %}
+ {% thumbnail sponsor.logo "120x300" as logo %}
<a href="{{ sponsor.url }}" target="_blank"><img src="{{ logo.url }}" alt="{{ sponsor.name }}" /></a>
{% endthumbnail %}
{% endfor %}
{% block footer %}
- {{ picture.html_file.read|safe }}
+ {{ picture.html_file.read.decode|safe }}
<div id="info" class="box">
<div class="sponsors">
</div>
<div class="box Picture-item" id="book-short">
- {% ssi_include 'picture_short' pk=picture.pk %}
+ {% include 'picture/picture_short.html' %}
</div>
{% endblock %}