# HG changeset patch # User nishanth # Date 1267436754 -19800 # Node ID c4cb937b8e7fd5b63bb6b46ff30a72f54c144d7b # Parent d378eff02f2ec893983412d048ee9191c799100b added learn more links. diff -r d378eff02f2e -r c4cb937b8e7f templates/about/mentor.html --- a/templates/about/mentor.html Mon Mar 01 12:44:27 2010 +0530 +++ b/templates/about/mentor.html Mon Mar 01 15:15:54 2010 +0530 @@ -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.
- - {% endblock %} diff -r d378eff02f2e -r c4cb937b8e7f templates/task/addmentor.html --- a/templates/task/addmentor.html Mon Mar 01 12:44:27 2010 +0530 +++ b/templates/task/addmentor.html Mon Mar 01 15:15:54 2010 +0530 @@ -1,9 +1,17 @@ {% extends 'base.html' %} {% block content %} - Click here to return to the task. + Click here to return to the task.

+ 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/editlearn more the task. But only the creator of a task can publish the task. + {% else %} + and will have all the rightslearn more you posses over the task. + {% endifequal %} +
+
{{form.as_table}} - +
{% if pending_requests %} Pending requests:
diff -r d378eff02f2e -r c4cb937b8e7f templates/task/claim.html --- a/templates/task/claim.html Mon Mar 01 12:44:27 2010 +0530 +++ b/templates/task/claim.html Mon Mar 01 15:15:54 2010 +0530 @@ -1,5 +1,8 @@ {% extends 'base.html' %} {% block content %} + {% if user_can_claim %} + Propose a claim to work on this task.learn more

+ {% endif %} {% if claims %} List of all the claims for the task {{task.title}}
{% for claim in claims %} @@ -20,7 +23,7 @@ Click here to view the task.
{% endif %} {% if task_claimed and is_mentor %} - Select a user to assign the work. + Select a user to assign the work.learn more {% endif %} {% if user_can_claim %} {% if errors %} @@ -30,11 +33,11 @@ {% endif %}
- Please note that you can claim only once and so write your proposal carefully.
Claim proposal:

- +
+ Please note that you can claim only once and so write your proposal carefully.
{% endif %} {% endblock %}