I'm using sorl-sorl-thumbnail-v10.12.1-8-g0b7b514.
My issue is using the sorl-thumbnail templatetag to display an image. I'm following the documentation using the simpliest way to display an image.
In my template I have an object and so my template so far looks like this:
{% load thumbnail %}
<div class="post">
<h2 class="title">{{ object.title }}</h2>
{% thumbnail object.logo "200x200" crop="center" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}">
{% endthumbnail %}
</div>
The real problem comes here. This current code just displays the dummy image. In order for me to get the image to display I have to alter the code to:
{% thumbnail object.logo "200x200" crop="center" as im %}
<img src="{{ object.logo.url }}" width="{{ im.width }}" height="{{ im.height }}">
{% endthumbnail %}
If I change the "object" to "im" then I just get a dummyimage agin. Why is this?
object&logoinobject.logo? – manji Apr 4 '11 at 16:25