improvements on talk improvement section
[cascardo/ema.git] / eventos / templates / eventos / talk_improve.html
index f6e582f..89c9d2a 100644 (file)
@@ -3,15 +3,26 @@
 {% block content %}
 <h2>Aprimorar Trabalho: {{ talk.titulo }}</h2>
 
-<span>Palestrante: <a href="/speaker/{{ speaker.id }}">{{ speaker.nome }}</a></span> <br />
-<span>trilha: {{ talk.trilha }}</span> <br />
-<span>Tipo: {{ talk.tipo }}</span> <br />
-<span>Descricao curta: {{ talk.descricao_curta}}</span> <br />
-<span>Descricao longa: {{ talk.descricao_longa }}</span> <br />
+<div><strong>Palestrante:</strong> <a href="/speaker/{{ speaker.id }}">{{ speaker.nome }}</a></div>
+<div><strong>trilha:</strong> {{ talk.trilha }}</div>
+<div><strong>Tipo:</strong> {{ talk.tipo }}</div>
+<div><strong>Descricao curta:</strong> {{ talk.descricao_curta}}</div>
+<div><strong>Descricao longa:</strong> {{ talk.descricao_longa }}</div>
+
+{% if improve %}
+<br /><br />
+<strong>{{ len_comments }} COMENTÁRIO(S)</strong>
+{% endif %}
 
-<ul>
+<ul id="comment-list">
 {% for i in improve  %}
-    <li class="{% cycle 'odd' 'even' %}">{{ i.comentario }}
+    <li class="{% cycle 'odd' 'even' %}">
+      <span>Postado por {{ i.usuario }}</span>
+      <em>({{ i.pub_date|date:"d/m/Y" }})</em>
+      <br />
+
+      {{ i.comentario }}
+    </li>
 {% endfor %}
 </ul>
 
 
 {% else %}
 
-Por favor, <a href="/subscribe/">cadastre-se</a> para deixar seu comentário.
+<strong>
+  Por favor, <a href="/subscribe/">cadastre-se</a> para deixar seu
+  comentário.
+</strong>
 
 {% endif %}