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

12 lines
289 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 />
2012-01-04 19:28:23 +05:30
<div class="orange">Meetings attended / attending:</div>
<ul>
{% for m in meetings %}
<li><a href="{{ m.get_absolute_url }}">{{ m.title }}</a></li>
{% endfor %}
</ul>