improvements on talk improvement section
[cascardo/ema.git] / eventos / templates / eventos / talk_improve.html
index 04cedaa..89c9d2a 100644 (file)
@@ -3,21 +3,43 @@
 {% block content %}
 <h2>Aprimorar Trabalho: {{ talk.titulo }}</h2>
 
-<span>Palestrante: {{ talk.palestrante }}</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>
 
-<ul>
+{% if improve %}
+<br /><br />
+<strong>{{ len_comments }} COMENTÁRIO(S)</strong>
+{% endif %}
+
+<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>
 
+{% if user.is_authenticated %}
+
 <form id="improve-add" method="post" action="./">
   {{ form.as_p }}
   <input type="submit" value="Comentar" />
 </form>
 
+{% else %}
+
+<strong>
+  Por favor, <a href="/subscribe/">cadastre-se</a> para deixar seu
+  comentário.
+</strong>
+
+{% endif %}
+
 {% endblock %}