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

12 lines
276 B
HTML
Raw Normal View History

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