it/itf/templates/modules/festival/documentsubject.html

14 lines
312 B
HTML
Raw Normal View History

2011-12-16 18:20:59 +00:00
{% load markup %}
2011-12-09 11:59:34 +00:00
{% for d in documents %}
<div class="orangeInnerRight">
{% if d.file %}
<a href="{{ d.file }} target="_blank"> {{ d.title }}</a>
{% else %}
{{ d.title }}
{% endif %}
</div>
2011-12-16 18:20:59 +00:00
{{ d.intro|markdown }}
2011-12-09 11:59:34 +00:00
<br />
{% endfor %}