added option of specifying if previous mentors and comments must be removed in publish task event.
{% extends 'base.html' %}
{% block content %}
{% if not reqs %}
You have no unreplied requests.
{% else %}
{% for req in reqs %}
<form><a href="/user/requests/rid={{req.pos}}">
{% if not req.is_read %}<b>{% endif %}{{req.sent_by.username}}|{{req.role}}|
{% ifequal req.role "PY" %}
{{req.task.title}}
{% endifequal %}</a>
{% if not req.is_read %}</b>{% endif %}<br /></form>
{% endfor %}
{% endif %}
{% endblock %}