templates/about/mentor.html
author nishanth
Sat, 27 Feb 2010 10:48:43 +0530
changeset 128 f34e3a3e1439
parent 127 71888e23f323
child 140 7bdcbb4f2c27
permissions -rw-r--r--
modified the notifications model. the sent_to is now a foreign key. now if we have a new type to be added, we can generate message and sub while creating notification. we can keep track of history using the role field in notification and task/sent_from

{% extends 'base.html' %}
{% block title %}
    {{task.title}}
{% 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 />
    
    <br /><a href="javascript:history.go(-1)">Click here</a> to get back to the previous page.
{% endblock %}