diff options
author | nishanth | 2010-02-24 15:10:03 +0530 |
---|---|---|
committer | nishanth | 2010-02-24 15:10:03 +0530 |
commit | e5d2242006b9ebba504785f37049d8e07bb4c580 (patch) | |
tree | 28763f222385a8bea9ebd231ca035e0be9658cd8 /templates/task | |
parent | 15920b70d0753433a4faa058af1ac3797e7dd5f1 (diff) | |
download | pytask-e5d2242006b9ebba504785f37049d8e07bb4c580.tar.gz pytask-e5d2242006b9ebba504785f37049d8e07bb4c580.tar.bz2 pytask-e5d2242006b9ebba504785f37049d8e07bb4c580.zip |
removed unwanted links.
Diffstat (limited to 'templates/task')
-rw-r--r-- | templates/task/claim.html | 3 | ||||
-rw-r--r-- | templates/task/view.html | 4 |
2 files changed, 4 insertions, 3 deletions
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}}<br /> {% endfor %} {% else %} - There are no claims for task <a href="/task/view/tid={{task.id}}">{{task.title}}</a> yet. + There are no claims for this task yet.<br /> + <a href="/task/view/tid={{task.id}}">Click here</a> to return to the task. {% endif %} {% if task_claimed and is_mentor %} <a href="/task/assign/tid={{task.id}}">Assign task</a> 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 %} - <a href="/task/browse/">Browse tasks</a> + <a href="/task/edit/tid={{task.id}}">Edit task</a> <h3>{{ task.title }}</h3><br /> <!-- we have to write our own datetime.strftime filter and use in the next line --> created by <a href="/user/view/uid={{ task.created_by.id }}">{{ task.created_by.username }}</a> on {{ task.creation_datetime.ctime }}<br /> @@ -13,7 +13,7 @@ <a href="/user/view/uid={{mentor.id}}">{{mentor.username}}|</a> {% endfor %} {% if can_mod_mentors %} - <br /><a href="/task/addmentor/tid={{task.id}}">Add another Mentor to this task</a><br /> + <a href="/task/addmentor/tid={{task.id}}">Add another Mentor to this task</a><br /> edit task goes here and it should contain all those add subs and add deps depending on availability<br /> {% endif %} |