# HG changeset patch # User Nishanth Amuluru # Date 1294565953 -19800 # Node ID 2763afa1c2a28b52b49e25c174fba31303c2b3fb # Parent 9b081296213301c18a1128ce56da567f3b7d1e03 home_page is now in some shape diff -r 9b0812962133 -r 2763afa1c2a2 pytask/templates/base.html --- a/pytask/templates/base.html Sun Jan 09 15:01:30 2011 +0530 +++ b/pytask/templates/base.html Sun Jan 09 15:09:13 2011 +0530 @@ -14,10 +14,11 @@
diff -r 9b0812962133 -r 2763afa1c2a2 pytask/templates/index.html --- a/pytask/templates/index.html Sun Jan 09 15:01:30 2011 +0530 +++ b/pytask/templates/index.html Sun Jan 09 15:09:13 2011 +0530 @@ -1,9 +1,9 @@ {% extends 'base.html' %} {% block content %} {% if not user %} - Welcome Guest
- Register - Login

+ Checkout the tasks on the left panel for tasks that have been recently created.
+ Checkout the textbooks for textbooks that have been added to the project.
+ {% else %} Logged in as {{ user.username }}

{% endif %} diff -r 9b0812962133 -r 2763afa1c2a2 pytask/templates/registration/login.html --- a/pytask/templates/registration/login.html Sun Jan 09 15:01:30 2011 +0530 +++ b/pytask/templates/registration/login.html Sun Jan 09 15:09:13 2011 +0530 @@ -5,6 +5,5 @@ {{ form.as_p }} -New User Sign up Forgot password? {% endblock %}