diff options
Diffstat (limited to 'templates/task')
-rw-r--r-- | templates/task/addmentor.html | 8 | ||||
-rw-r--r-- | templates/task/claim.html | 2 | ||||
-rw-r--r-- | templates/task/publish.html | 4 | ||||
-rw-r--r-- | templates/task/view.html | 18 |
4 files changed, 16 insertions, 16 deletions
diff --git a/templates/task/addmentor.html b/templates/task/addmentor.html index 2db13c9..9bab81c 100644 --- a/templates/task/addmentor.html +++ b/templates/task/addmentor.html @@ -1,11 +1,11 @@ {% extends 'base.html' %} {% block content %} <a href="/task/view/tid={{task.id}}">Click here</a> to return to the task.<br /><br /> - Requesting a user to act as a mentor for the task sends him a request. If he accepts the request, he will also be the mentor for this task + Requesting a user to act as a reviewer for the task sends him a request. If he accepts the request, he will also be the reviewer for this task {% ifequal task.status "UP" %} - and can view/edit<sup><a href="/about/mentor/" target="_blank">learn more</a></sup> the task. But only the creator of a task can publish the task. + and can view/edit<sup><a href="/about/reviewer/" target="_blank">learn more</a></sup> the task. But only the creator of a task can publish the task. {% else %} - and will have all the rights<sup><a href="/about/mentor/" target="_blank">learn more</a></sup> you posses over the task. + and will have all the rights<sup><a href="/about/reviewer/" target="_blank">learn more</a></sup> you posses over the task. {% endifequal %} <br /> <br /> @@ -18,7 +18,7 @@ {% for req in pending_requests %} <a href="/user/view/uid={{req.sent_by.id}}">{{req.sent_by.username}}</a> requested {% for a_user in req.sent_to.all %} - <a href="/user/view/uid={{a_user.id}}">{{a_user.username}}</a> to act as a mentor + <a href="/user/view/uid={{a_user.id}}">{{a_user.username}}</a> to act as a reviewer {% endfor %} on {{req.creation_date|date:"D d M Y"}} at {{req.creation_date|time:"H:i"}}<br /> {% endfor %} diff --git a/templates/task/claim.html b/templates/task/claim.html index d4858d4..c67c0e6 100644 --- a/templates/task/claim.html +++ b/templates/task/claim.html @@ -22,7 +22,7 @@ {% endif %} <a href="/task/view/tid={{task.id}}">Click here</a> to view the task.<br /> {% endif %} - {% if task_claimed and is_mentor %} + {% if task_claimed and is_reviewer %} <a href="/task/assign/tid={{task.id}}">Select a user to assign the work.</a><sup><a href="/about/assigntask/" target="_blank">learn more</a></sup> {% endif %} {% if user_can_claim %} diff --git a/templates/task/publish.html b/templates/task/publish.html index ad7f22e..7f6c062 100644 --- a/templates/task/publish.html +++ b/templates/task/publish.html @@ -5,8 +5,8 @@ {% block content %} <b>Disclaimer:</b><br /> Publishing a task will make the task visible to every one and cannot be edited there after.<br /><br /> - Only you will have mentoring rights on this task. But you can request other users also to mentor the task. - <sup><a href="/about/addmentors/" target="_blank">learn more</a></sup><br /><br /> + Only you will have reviewering rights on this task. But you can request other users also to reviewer the task. + <sup><a href="/about/addreviewers/" target="_blank">learn more</a></sup><br /><br /> This action cannot be undone. <br /> Please confirm if you want to publish. diff --git a/templates/task/view.html b/templates/task/view.html index aef0083..61f2741 100644 --- a/templates/task/view.html +++ b/templates/task/view.html @@ -27,19 +27,19 @@ {% ifequal task.status "UP" %} Task can be viewed by: {% else %} - Mentors: + Reviewers: {% endifequal %} - {% for mentor in mentors %} - <a href="/user/view/uid={{mentor.id}}">{{mentor.username}}</a> + {% for reviewer in reviewers %} + <a href="/user/view/uid={{reviewer.id}}">{{reviewer.username}}</a> {% endfor %} - {% if can_mod_mentors %} - <a href="/task/addmentor/tid={{task.id}}"> + {% if can_mod_reviewers %} + <a href="/task/addreviewer/tid={{task.id}}"> {% ifequal task.status "UP" %} Request others to view/edit the task {% else %} - Add another Mentor to this task + Add another Reviewer to this task {% endifequal %}</a> {% endif %} <br /> @@ -117,7 +117,7 @@ {% for user in assigned_users %} <a href="/user/view/uid={{user.id}}">{{user.username}}</a> {% endfor %} - {% if is_mentor %} + {% if is_reviewer %} <a href="/task/remuser/tid={{task.id}}">Remove an existing user</a> {% endif %} <br /> @@ -129,7 +129,7 @@ {% if task_claimable %} <a href="/task/claim/tid={{task.id}}"> - {% if is_mentor %} + {% if is_reviewer %} View claims {% else %} Claim the task @@ -159,7 +159,7 @@ <input type="submit" value="Submit"> </form> {% else %} - {% if is_mentor %} + {% if is_reviewer %} Add comment:<br /> <form action="" method="post"> <!-- we might even want to use forms here --> |