{% extends 'base.html' %} {% block content %} Click here to return to the task.
{{form.as_table}}
{% if pending_requests %} Pending requests:
{% for req in pending_requests %} {{req.sent_by.username}} requested {% for a_user in req.sent_to.all %} {{a_user.username}} to act as a mentor {% endfor %} on {{req.creation_date|date:"D d M Y"}} at {{req.creation_date|time:"H:i"}}
{% endfor %} {% endif %} {% endblock %}