This commit is contained in:
Sanj 2011-10-05 20:01:43 +05:30
parent 97bef34948
commit 7d690e145d

View File

@ -2,11 +2,11 @@
<div class="itfInfo">
{% for s in stories %}
<span class="itfInfoSub">Story: </span><span class="ifInfoInfo">{{ s.text }}</span>
{% for img in images %}
{% thumbnail img "100x100" crop="center" as im %}
{% if s.image %}
{% thumbnail s.image "100x100" crop="center" as im %}
<img class="itfInfoImg" src="{{ im.url }}" />
{% endthumbnail %}
{% endfor %}
{% endif %}
<br /><br />
{% endfor %}
<span class="itfInfoSub">Law: </span><span class="itfInfoInfo">{{ law }}</span>
@ -18,6 +18,13 @@
<br /><br />
<span class="itfInfoSub">Relevance to Theatre: </span><span class="itfInfoInfo">{{ theatre|linebreaksbr }}</span>
<span class="itfInfoSub">Quick Howto: </span><span class="itfInfoInfo">{{ quick_howto|linebreaksbr }}</span><br /><br />
{% for img in images %}
{% thumbnail img "100x100" crop="center" as im %}
<img class="itfInfoImg" src="{{ im.url }}" />
{% endthumbnail %}
{% endfor %}
</div>