endfor was misplaced
[cascardo/eventmanager.git] / templates / programacao.html
1 {% extends "base.html" %}
2 {% block content %}
3
4 {% if aprovadas %}
5
6 <!--<h2>{{ dados_usuario.nome }}</h2>-->
7     {% for p in aprovadas %}
8     {% ifchanged p.dia %}
9       <br />
10       <br />
11       <h3>
12         {{ p.dia|date:"l, d \de F" }}
13       </h3>
14       <br />
15     {% endifchanged %}
16     <span style="font-size:12pt"><a href="/palestra/{{p.id}}/" style="color:#333;">{{p.titulo}}</a></span>
17         <br />
18         <span style="margin-left:20px">
19             {{p.time_start}}-{{p.time_end}}
20          </span>
21          <br />
22          <span style="margin-left:20px">
23          {% ifequal p.room 0 %}
24             Auditório
25          {% else %}
26             Sala {{p.room}}
27          {% endifequal %}
28          </span>
29          <br />
30         <span style="font-weight:bolder;margin-left:15px">Palestrante{{ p.palestrante.all|pluralize }}:</span>
31         <br />
32             {% for x in p.palestrante.all %}
33         <span style="margin-left:30px">
34             <a href="/palestrante/{{x.id}}/">{{x.nome|capfirst}} </a>{% ifnotequal p.palestrante.all|length 1%}<br /> {% endifnotequal %}
35         </span>
36         <br />
37             {% endfor %}
38     {% endfor %}
39 {% else %}
40 <div id="404" style="text-align:center">
41     <h2>Padre Quevedo 404</h2>
42     <br />
43     <div style="color:#FF0000;">
44         Usuario nón ecziste!
45     </div>
46 </div>
47 {% endif %}
48
49 <a href="javascript:;" onclick="history.back ();">Voltar</a>
50 {% endblock %}