sorl fix for old meetings page

This commit is contained in:
Sanj 2011-11-07 16:11:45 +05:30
parent 63e90f82e8
commit 28a66e2caf

View File

@ -240,9 +240,13 @@ str.replace(/[\r\t\n]/g, " ")
<div class="tabText"> <div class="tabText">
{% load thumbnail %} {% load thumbnail %}
{% for i in data.imagegallery %} {% for i in data.imagegallery %}
<a href="{% thumbnail i.file 600x500 quality=60 %}" title="{{i.title}}" class="thickbox" rel="gall"> {% thumbnail i.file "600x500" crop="center" as bigimage %}
<img src="{% thumbnail i.file 100x100 autocrop crop %}" /> {% thubmnail i.file "100x100" crop="center" as thumb %}
<a href="{{ bigimage.url }}" title="{{i.title}}" class="thickbox" rel="gall">
<img src="{{ thumb.url }}" />
</a> </a>
{% endthumbnail %}
{% endthumbnail %}
{% endfor %} {% endfor %}
</div> </div>
</div> </div>