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

12 lines
276 B
HTML
Raw Normal View History

2011-12-08 09:48:01 +00:00
{% load markup %}
2011-12-05 13:06:14 +00:00
<div class="orange">{{ name }}:</div> {{ short_bio|markdown }}
2011-09-25 01:26:48 +00:00
<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>