默认为Sorl-Thumbnail静态图像

时间:2014-01-04 11:09:48

标签: django sorl-thumbnail

我在我的django项目中使用了Sorl-Thumbnail。我有一种情况,当我没有图像时,我需要显示no_image.png。 此代码有效:

{% thumbnail car.default_picture.image|default:"http://example.com/img/no_image.png" "240x180" crop="center" as im %}
    <img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}">
{% endthumbnail %}

但我想默认使用{% static "img/no_image.png" %}。我有一个错误:

TemplateSyntaxError: Syntax error. Expected: ``thumbnail source geometry [key1=val1 key2=val2...] as var`

如何解决?感谢。

2 个答案:

答案 0 :(得分:9)

我刚刚找到了这个替代方案:

{% thumbnail product.logo "200x200" crop="center" as im %}
    <img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}">
{% empty %}
    <img src="{% static 'images/default.gif' %}" width="200" height="200">
{% endthumbnail %}

答案 1 :(得分:1)

{% if car.default_picture.image %}
thumbnail
{% else %}
{% static "img/no_image.png" %}
{% endif %}

它对我有用