From 2c59f03fdfbccb3b758931fb690b911e96e421d2 Mon Sep 17 00:00:00 2001 From: Thadeu Lima de Souza Cascardo Date: Mon, 15 Oct 2007 10:37:04 -0200 Subject: [PATCH] Show start and end time and room in schedule. --- templates/programacao.html | 7 +++++++ 1 file changed, 7 insertions(+) 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 %}
-- 2.20.1