Added improve template
authorMarcelo Jorge Vieira (metal <metal@alucinados.com>
Tue, 4 Nov 2008 21:43:56 +0000 (19:43 -0200)
committerLincoln de Sousa <lincoln@alfaiati.net>
Tue, 4 Nov 2008 21:56:56 +0000 (19:56 -0200)
eventos/templates/eventos/improve.html [new file with mode: 0644]

diff --git a/eventos/templates/eventos/improve.html b/eventos/templates/eventos/improve.html
new file mode 100644 (file)
index 0000000..8904bb8
--- /dev/null
@@ -0,0 +1,15 @@
+{% extends "base.html" %}
+
+{% block content %}
+<h2>Aprimorar Trabalhos</h2>
+
+<ul>
+{% for t in improve %}
+    <ul>{{ t.trilha }}
+    {% for p in t.talks %}
+        <li><a href="/improve/{{ p.id }}/">{{ p.titulo }}</a>
+    {% endfor %}
+{% endfor %}
+</ul>
+
+{% endblock %}