ステージングサーバーでSorl-thumbnailを実行しようとしていますが、アプリがローカルホストで正常に動作するため、TemplateSyntaxErrorが発生します。
エラーは{%endthumbnail%}で発生します
TemplateSyntaxError at /home/
Invalid block tag: 'endthumbnail', expected 'endif'
どんな助けでも大歓迎です。ありがとう!
{% 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 %}