# HG changeset patch
# User nishanth
# Date 1267004403 -19800
# Node ID a14ec2f09beb9168e9089f93edc1d38ff0d6ede2
# Parent 49532a0f50712c6a33e9f9ae41781712e9f342ab
removed unwanted links.
diff -r 49532a0f5071 -r a14ec2f09beb templates/base.html
--- a/templates/base.html Wed Feb 24 14:47:29 2010 +0530
+++ b/templates/base.html Wed Feb 24 15:10:03 2010 +0530
@@ -134,6 +134,7 @@
notifications
requests
+ my profile
logout
{% else %}
login
diff -r 49532a0f5071 -r a14ec2f09beb templates/index.html
--- a/templates/index.html Wed Feb 24 14:47:29 2010 +0530
+++ b/templates/index.html Wed Feb 24 15:10:03 2010 +0530
@@ -9,11 +9,7 @@
{{ task.title }}
{% endfor %}
{% else %}
- Welcome {{ user.username }}
- logout
-
- Tasks
- My Profile
+ Logged in as {{ user.username }}
{% endif %}
{% if can_create_task %}
Create a task
diff -r 49532a0f5071 -r a14ec2f09beb templates/task/claim.html
--- a/templates/task/claim.html Wed Feb 24 14:47:29 2010 +0530
+++ b/templates/task/claim.html Wed Feb 24 15:10:03 2010 +0530
@@ -8,7 +8,8 @@
{{claim.message}}
{% endfor %}
{% else %}
- There are no claims for task {{task.title}} yet.
+ There are no claims for this task yet.
+ Click here to return to the task.
{% endif %}
{% if task_claimed and is_mentor %}
Assign task
diff -r 49532a0f5071 -r a14ec2f09beb templates/task/view.html
--- a/templates/task/view.html Wed Feb 24 14:47:29 2010 +0530
+++ b/templates/task/view.html Wed Feb 24 15:10:03 2010 +0530
@@ -4,7 +4,7 @@
{% endblock %}
{% block content %}
{% if task_viewable %}
- Browse tasks
+ Edit task
{{ task.title }}
created by {{ task.created_by.username }} on {{ task.creation_datetime.ctime }}
@@ -13,7 +13,7 @@
{{mentor.username}}|
{% endfor %}
{% if can_mod_mentors %}
-
Add another Mentor to this task
+ Add another Mentor to this task
edit task goes here and it should contain all those add subs and add deps depending on availability
{% endif %}