From e5d2242006b9ebba504785f37049d8e07bb4c580 Mon Sep 17 00:00:00 2001
From: nishanth
Date: Wed, 24 Feb 2010 15:10:03 +0530
Subject: removed unwanted links.
---
templates/base.html | 1 +
templates/index.html | 6 +-----
templates/task/claim.html | 3 ++-
templates/task/view.html | 4 ++--
4 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/templates/base.html b/templates/base.html
index 3e383f0..c6a92c7 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -134,6 +134,7 @@
notifications
requests
+ my profile
logout
{% else %}
login
diff --git a/templates/index.html b/templates/index.html
index 96846fd..82840a1 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -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 --git a/templates/task/claim.html b/templates/task/claim.html
index 26eceef..c656146 100644
--- a/templates/task/claim.html
+++ b/templates/task/claim.html
@@ -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 --git a/templates/task/view.html b/templates/task/view.html
index 18c04c2..9f01594 100644
--- a/templates/task/view.html
+++ b/templates/task/view.html
@@ -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 %}
--
cgit