{% extends 'base.html' %}
{% block content %}
From: {{req.sent_by.username}}
To:
{% for to_user in sent_users %}
{{to_user.username}},
{% endfor %}
Message:
{% ifequal "PY" req.role %}
{{req.sent_by.username}} assigned {{req.pynts}} pynts to
{{req.receiving_user.username}} for the task
{{req.task.title}}
{% endifequal %}
{% ifequal "MT" req.role %}
{{req.sent_by.username}} requested you to act as a mentor for the task
{{req.task.title}}
{% endifequal %}
Please accept or reject the request.