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

12 lines
276 B
HTML
Executable File

{% load markup %}
<div class="orange">{{ name }}:</div> {{ short_bio|markdown }}
<br />
<div class="orange">Meetings attended</div>
<ul>
{% for m in meetings %}
<li><a href="{{ m.get_absolute_url }}">{{ m.title }}</a></li>
{% endfor %}
</ul>