diff options
author | nishanth | 2010-03-01 15:15:54 +0530 |
---|---|---|
committer | nishanth | 2010-03-01 15:15:54 +0530 |
commit | d780357b029a9e3a4c5d7b4e8902f35dea2113fd (patch) | |
tree | 7623265304f4209eda519775c0edf5376ffc95bb | |
parent | 1d1cd491495ff976db93b3de82f1feecdcc14dff (diff) | |
download | pytask-d780357b029a9e3a4c5d7b4e8902f35dea2113fd.tar.gz pytask-d780357b029a9e3a4c5d7b4e8902f35dea2113fd.tar.bz2 pytask-d780357b029a9e3a4c5d7b4e8902f35dea2113fd.zip |
added learn more links.
-rw-r--r-- | templates/about/mentor.html | 4 | ||||
-rw-r--r-- | templates/task/addmentor.html | 12 | ||||
-rw-r--r-- | templates/task/claim.html | 9 |
3 files changed, 17 insertions, 8 deletions
diff --git a/templates/about/mentor.html b/templates/about/mentor.html index c501dc1..7935185 100644 --- a/templates/about/mentor.html +++ b/templates/about/mentor.html @@ -1,12 +1,10 @@ {% extends 'base.html' %} {% block title %} - {{task.title}} + {{PyTasks - Learn more - Mentor}} {% endblock %} {% block content %} The user who created a task will become a mentor for the task. Mentor is a person who mentors the task. Mentor has all the rights over the task. A Mentor can request other users also to mentor the task. Mentor can add/remove subtasks if applicable. Mentor can request assign of credits for task. Mentor can mark the task as Invalid/Complete.<br /> - - {% endblock %} diff --git a/templates/task/addmentor.html b/templates/task/addmentor.html index cbcde65..1c6c1d4 100644 --- a/templates/task/addmentor.html +++ b/templates/task/addmentor.html @@ -1,9 +1,17 @@ {% extends 'base.html' %} {% block content %} - <a href="/task/view/tid={{task.id}}">Click here</a> to return to the task. + <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 + {% ifequal task.status "UP" %} + and can view/edit<sup><a href="/about/edittask/" 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/mentorrights/" target="_blank">learn more</a></sup> you posses over the task. + {% endifequal %} + <br /> + <br /> <form action="" method="post"> {{form.as_table}} - <input type="submit" value="submit"> + <input type="submit" value="Submit"> </form> {% if pending_requests %} Pending requests:<br /> diff --git a/templates/task/claim.html b/templates/task/claim.html index f69b1e1..428e0f4 100644 --- a/templates/task/claim.html +++ b/templates/task/claim.html @@ -1,5 +1,8 @@ {% extends 'base.html' %} {% block content %} + {% if user_can_claim %} + Propose a claim to work on this task.<sup><a href="/about/claimtask/" target="_blank">learn more</a></sup><br /><br /> + {% endif %} {% if claims %} List of all the claims for the task <a href="/task/view/tid={{task.id}}">{{task.title}}</a><br /> {% for claim in claims %} @@ -20,7 +23,7 @@ <a href="/task/view/tid={{task.id}}">Click here</a> to view the task.<br /> {% endif %} {% if task_claimed and is_mentor %} - <a href="/task/assign/tid={{task.id}}">Select a user to assign the work.</a> + <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 %} {% if errors %} @@ -30,11 +33,11 @@ {% endif %} <hr /> - Please note that you can claim only once and so write your proposal carefully.<br /> Claim proposal:<br /> <form action="" method="post"> <textarea name="message"></textarea><br /> - <input type="submit" value="Submit Claim"> + <input type="submit" value="Submit Claim"><br /> + Please note that you can claim only once and so write your proposal carefully.<br /> </form> {% endif %} {% endblock %} |