ups
This commit is contained in:
parent
97bef34948
commit
7d690e145d
|
@ -2,11 +2,11 @@
|
||||||
<div class="itfInfo">
|
<div class="itfInfo">
|
||||||
{% for s in stories %}
|
{% for s in stories %}
|
||||||
<span class="itfInfoSub">Story: </span><span class="ifInfoInfo">{{ s.text }}</span>
|
<span class="itfInfoSub">Story: </span><span class="ifInfoInfo">{{ s.text }}</span>
|
||||||
{% for img in images %}
|
{% if s.image %}
|
||||||
{% thumbnail img "100x100" crop="center" as im %}
|
{% thumbnail s.image "100x100" crop="center" as im %}
|
||||||
<img class="itfInfoImg" src="{{ im.url }}" />
|
<img class="itfInfoImg" src="{{ im.url }}" />
|
||||||
{% endthumbnail %}
|
{% endthumbnail %}
|
||||||
{% endfor %}
|
{% endif %}
|
||||||
<br /><br />
|
<br /><br />
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<span class="itfInfoSub">Law: </span><span class="itfInfoInfo">{{ law }}</span>
|
<span class="itfInfoSub">Law: </span><span class="itfInfoInfo">{{ law }}</span>
|
||||||
|
@ -18,6 +18,13 @@
|
||||||
<br /><br />
|
<br /><br />
|
||||||
<span class="itfInfoSub">Relevance to Theatre: </span><span class="itfInfoInfo">{{ theatre|linebreaksbr }}</span>
|
<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 />
|
<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>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user