fix empty bios in meetings

This commit is contained in:
Sanj 2012-02-16 17:10:10 +05:30
parent 5e6fa5abd2
commit 9d09df5e30

View File

@ -141,7 +141,11 @@
<a href="Javascript:return false;">{{ p.name }}</a> {{ p.title }}
</div>
<div class="pBio">
{{ p.short_bio|markdown }}
{% if p.short_bio %}
{{ p.short_bio|markdown }}
{% else %}
No bio available.
{% endif %}
</div>
</div>
{% endfor %}