pytask/templates/index.html
changeset 129 13e171f09941
parent 127 32457bce3437
--- a/pytask/templates/index.html	Sun Jan 09 19:35:31 2011 +0530
+++ b/pytask/templates/index.html	Sun Jan 09 19:45:42 2011 +0530
@@ -14,6 +14,15 @@
     <br />
     {% endif %}
     
+    {% if unpublished_tasks %}
+    Tasks created by you that need approval:<ul>
+        {% for a_task in unpublished_tasks %}
+            <li><a href="/task/view/tid={{a_task.uniq_key}}">{{a_task.title}}</a></li>
+        {% endfor %}
+        </ul>
+    <br />
+    {% endif %}
+
     {% if reviewing_tasks %}
     Tasks you are reviewering:<ul>
         {% for a_task in reviewing_tasks %}