it/itf/templates/modules/festival/documentsubject.html
2011-12-16 23:50:59 +05:30

14 lines
312 B
HTML
Executable File

{% load markup %}
{% for d in documents %}
<div class="orangeInnerRight">
{% if d.file %}
<a href="{{ d.file }} target="_blank"> {{ d.title }}</a>
{% else %}
{{ d.title }}
{% endif %}
</div>
{{ d.intro|markdown }}
<br />
{% endfor %}