Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 434
Lev Avatar asked Jan 04 '14 11:01

Lev


2 Answers

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 %}
like image 142
MatheusJardimB Avatar answered Nov 15 '22 22:11

MatheusJardimB


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

It works for me

like image 34
Lev Avatar answered Nov 15 '22 23:11

Lev