diff -r 40f1ef7a46d8 -r 5a94c774473c pytask/templates/task/browse.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pytask/templates/task/browse.html Tue Jan 11 11:51:12 2011 +0530 @@ -0,0 +1,39 @@ +{% extends 'base.html' %} +{% block content %} + + {% if open_tasks %} + Tasks that are open for contribution +
+ {% endif %} + + {% if working_tasks %} + Tasks that are being worked on +
+ {% endif %} + + {% if comp_tasks %} + Tasks that were completed recently +
+ {% endif %} + + {% if unpub_tasks %} + Tasks that need approval +
+ {% endif %} +{% endblock %}