I'm trying to get Sorl-thumbnail running on my staging server, but I'm running into a TemplateSyntaxError which is throwing me since the app works fine on localhost.

The error is coming in at {% endthumbnail %}

TemplateSyntaxError at /home/
Invalid block tag: 'endthumbnail', expected 'endif'

Any help would be greatly appreciated. Thanks!

{% load thumbnail %}

{% if picture.photo_medium %}
    <img src="{{AWS_URL}}{{picture.photo_medium}}" class="imagepage" width="400" height="300">
{% else %}
    {% if picture.photo_large|is_portrait %}
       <div class="portrait">
          {% thumbnail picture.photo_large "400" crop="center" as im %}
          <img src="{{AWS_URL}}{{ im }}">
       </div>
    {% else %}
       <div class="landscape">
          {% thumbnail picture.photo_large "400" crop="center" as im %}
          <img src="{{AWS_URL}}{{ im }}">
       </div>
    {% endif %}
{% endif %}
link|improve this question

And I am calling {% load thumbnail %} further up the page. Just in case someone wonders about that – Emile Petrone Apr 21 '11 at 6:51
I really don't see the problem, everything should work fine. Try experementing, by removing the {% if %} block, what will happen? – Silver Light Apr 21 '11 at 8:42
feedback

2 Answers

up vote 2 down vote accepted

I might be wrong, but I don't think you need the {% endthumbnail %} tag.

link|improve this answer
According to docs (thumbnail.sorl.net/examples.html#template-examples) he does. – Silver Light Apr 21 '11 at 8:37
Well, that doesn't work for me either - I don't know how it can work on the local server at all. I've always used it without the endthumbnail tag - with it, I get the same error (always). – Herman Schaaf Apr 21 '11 at 13:05
Bizarre - the solution was removing the endthumbnail, even though the docs use it. – Emile Petrone Apr 21 '11 at 13:15
@Herman One more question, I'm now getting Invalid filter:'is_portrait' and I'm wondering if you have yours setup differently than the docs when you use that too. I've posted the full code above. Thanks! – Emile Petrone Apr 21 '11 at 13:53
@Emile: Sorry, never used that option - however, I used grep -r "portrait" * in my sorl folder, and there's no mention of any is_portrait filter (the word portrait isn't anywhere to be seen) - so either it's a feature in a newer version of sorl, or it hasn't been implemented yet (or deprecated)! – Herman Schaaf Apr 21 '11 at 14:07
show 3 more comments
feedback

It is likely that you have an older version of sorl-thumbnail installed on your localhost than is installed on your staging server. The endthumbnail tag was added relatively recently as part of a major rewrite.

If you find that you need to upgrade you may find the setting THUMBNAIL-DEBUG helpful for tracking down other problems.

link|improve this answer
Yep - deleting all references to sorl on the host and then re-running "pip install sorl-thumbnail" fixed it for me. – shacker Aug 24 '11 at 20:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.