diff -r 7c9fea7e28c8 -r a93eebabfeb1 templates/index.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/index.html Thu Feb 04 22:12:48 2010 +0530 @@ -0,0 +1,22 @@ +{% extends 'base.html' %} +{% block content %} + {% if is_guest %} + Welcome Guest
+ Register + Login

+ Recent Tasks:
+ {% for task in task_list %} + {{ task.title }}
+ {% endfor %} + {% else %} + Welcome {{ user.username }}
+ logout
+
+ Tasks
+ Users
+ My Profile
+ {% endif %} + {% if can_create_task %} + Create a task
+ {% endif %} +{% endblock %}