summaryrefslogtreecommitdiff
path: root/templates/task/addmentor.html
diff options
context:
space:
mode:
authorMadhusudan.C.S2011-01-14 00:59:09 +0530
committerMadhusudan.C.S2011-01-14 00:59:09 +0530
commitbb35c0a7546440247dad47f57d748259d0e9a744 (patch)
tree76f740c37954d23da88fcd2af856f74a5bc1e9e5 /templates/task/addmentor.html
parent8b708b1b475caad85e12022db6d3d9af3387fbfe (diff)
downloadpytask-bb35c0a7546440247dad47f57d748259d0e9a744.tar.gz
pytask-bb35c0a7546440247dad47f57d748259d0e9a744.tar.bz2
pytask-bb35c0a7546440247dad47f57d748259d0e9a744.zip
Purging the repository for the new set of changes by Nishanth.
Diffstat (limited to 'templates/task/addmentor.html')
-rw-r--r--templates/task/addmentor.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/templates/task/addmentor.html b/templates/task/addmentor.html
deleted file mode 100644
index 9bab81c..0000000
--- a/templates/task/addmentor.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{% 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 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/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/reviewer/" 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">
- </form>
- {% if pending_requests %}
- Pending requests:<br />
- {% 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 reviewer
- {% endfor %}
- on {{req.creation_date|date:"D d M Y"}} at {{req.creation_date|time:"H:i"}}<br />
- {% endfor %}
- {% endif %}
-{% endblock %}