Leon
Leon

Reputation: 6554

Sorl-Thumbnail static image in default

I use Sorl-Thumbnail in my django-project. I have a situation, when I havent got an image and I need to show no_image.png. This code works:

{% 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 %}

But I want to use {% static "img/no_image.png" %} in default. I have an error:

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

How to fix it? Thanks.

Upvotes: 8

Views: 1414

Answers (2)

MatheusJardimB
MatheusJardimB

Reputation: 3677

I just found this alternative too:

{% 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 %}

Upvotes: 10

Leon
Leon

Reputation: 6554

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

It works for me

Upvotes: 1

Related Questions