now requested mentors can see unpublished task but not comment on it.
{% extends 'base.html' %}
{% block content %}
List of all the tasks:<ul>
{% for task in task_list %}
<li><a href="/task/view/tid={{ task.id }}">{{ task.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}