it/itf/templates/modules/bestpractices/bestpractice.html

24 lines
881 B
HTML
Raw Normal View History

2011-10-05 14:24:04 +00:00
{% load thumbnail %}
2011-08-25 09:51:17 +00:00
<div class="itfInfo">
{% for s in stories %}
<span class="itfInfoSub">Story: </span><span class="ifInfoInfo">{{ s.text }}</span>
2011-10-05 14:28:48 +00:00
{% for img in images %}
{% thumbnail img "100x100" crop="center" as im %}
<img class="itfInfoImg" src="{{ im.url }}" />
{% endthumbnail %}
{% endfor %}
2011-08-25 09:51:17 +00:00
<br /><br />
{% endfor %}
<span class="itfInfoSub">Law: </span><span class="itfInfoInfo">{{ law }}</span>
{% if law_image %}
2011-10-05 14:24:04 +00:00
{% thumbnail law_image "100x100" crop="center" as im %}
<img class="itfInfoImg" src="{{ im.url }}" />
{% endthumbnail %}
2011-08-25 09:51:17 +00:00
{% endif %}
<br /><br />
2011-10-05 14:24:04 +00:00
<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 />
2011-08-25 09:51:17 +00:00
</div>