22 lines
818 B
HTML
22 lines
818 B
HTML
{% load thumbnail %}
|
|
<div class="itfInfo">
|
|
{% for s in stories %}
|
|
<span class="itfInfoSub">Story: </span><span class="ifInfoInfo">{{ s.text }}</span>
|
|
{% thumbnail s.image "100x100" crop="center" as im %}
|
|
<img class="itfInfoImg" src="{{ im.url }}" />
|
|
{% endthumbnail %}
|
|
<br /><br />
|
|
{% endfor %}
|
|
<span class="itfInfoSub">Law: </span><span class="itfInfoInfo">{{ law }}</span>
|
|
{% if law_image %}
|
|
{% thumbnail law_image "100x100" crop="center" as im %}
|
|
<img class="itfInfoImg" src="{{ im.url }}" />
|
|
{% endthumbnail %}
|
|
{% endif %}
|
|
<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 />
|
|
</div>
|
|
|
|
|