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

33 lines
1.1 KiB
HTML
Raw Normal View History

2011-10-05 19:54:04 +05:30
{% load thumbnail %}
2011-08-25 15:21:17 +05:30
<div class="itfInfo">
{% for s in stories %}
2011-10-05 20:09:13 +05:30
<span class="orange">Story: </span><span class="ifInfoInfo">{{ s.text }}</span>
2011-10-05 20:01:43 +05:30
{% if s.image %}
{% thumbnail s.image "100x100" crop="center" as im %}
2011-10-05 19:58:48 +05:30
<img class="itfInfoImg" src="{{ im.url }}" />
{% endthumbnail %}
2011-10-05 20:01:43 +05:30
{% endif %}
2011-08-25 15:21:17 +05:30
<br /><br />
{% endfor %}
2011-10-05 20:09:13 +05:30
<span class="orange">Law: </span><span class="itfInfoInfo">{{ law }}</span>
2011-08-25 15:21:17 +05:30
{% if law_image %}
2011-10-05 19:54:04 +05:30
{% thumbnail law_image "100x100" crop="center" as im %}
<img class="itfInfoImg" src="{{ im.url }}" />
{% endthumbnail %}
2011-08-25 15:21:17 +05:30
{% endif %}
<br /><br />
2011-10-05 20:09:13 +05:30
<span class="orange">Relevance to Theatre: </span><span class="itfInfoInfo">{{ theatre|linebreaksbr }}</span> <br /><br />
<span class="orange">Quick Howto: </span><span class="itfInfoInfo">{{ quick_howto|linebreaksbr }}</span><br /><br />
2011-10-05 20:01:43 +05:30
2011-10-05 20:09:13 +05:30
<div class="thumbsGallery">
2011-10-05 20:01:43 +05:30
{% for img in images %}
2011-10-05 20:06:42 +05:30
{% thumbnail img.image "100x100" crop="center" as im %}
2011-10-05 20:09:13 +05:30
<img class="itfInfoImg" src="{{ im.url }}" class="thumbsDetails" />
2011-10-05 20:01:43 +05:30
{% endthumbnail %}
{% endfor %}
2011-10-05 20:09:13 +05:30
</div>
2011-10-05 20:01:43 +05:30
2011-08-25 15:21:17 +05:30
</div>