From: Thadeu Lima de Souza Cascardo Date: Mon, 15 Oct 2007 12:37:04 +0000 (-0200) Subject: Show start and end time and room in schedule. X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Feventmanager.git;a=commitdiff_plain;h=2c59f03fdfbccb3b758931fb690b911e96e421d2 Show start and end time and room in schedule. --- diff --git a/templates/programacao.html b/templates/programacao.html index 6839348..454d404 100644 --- a/templates/programacao.html +++ b/templates/programacao.html @@ -20,6 +20,13 @@ {% for x in p.palestrante.all %} {{x.nome|capfirst}} {% ifnotequal p.palestrante.all|length 1%}
{% endifnotequal %} + {{p.time_start}}-{{p.time_end}} +
+ {% if p.room == 0 %} + Auditório + {% else %} + Sala {{p.room}} + {% endif %}
{% endfor %}