pytask/templates/index.html
changeset 365 32457bce3437
parent 364 2763afa1c2a2
child 367 13e171f09941
--- a/pytask/templates/index.html	Sun Jan 09 15:09:13 2011 +0530
+++ b/pytask/templates/index.html	Sun Jan 09 15:30:06 2011 +0530
@@ -14,19 +14,9 @@
     <br />
     {% endif %}
     
-    
-    {% if unpublished_tasks %}
-    Unpublished tasks viewable by you:<ul>
-        {% for a_task in unpublished_tasks %}
-            <li><a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a></li>
-        {% endfor %}
-        </ul>
-    <br />
-    {% endif %}
-
-    {% if reviewered_tasks %}
+    {% if reviewing_tasks %}
     Tasks you are reviewering:<ul>
-        {% for a_task in reviewered_tasks %}
+        {% for a_task in reviewing_tasks %}
             <li><a href="/task/view/tid={{a_task.uniq_key}}">{{a_task.title}}</a></li>
         {% endfor %}
         </ul>