{% extends "base.html" %} {% block content %}

Assignments

{% for a in assignments %} {% endfor %}
Lock? Mentor Mentee Score Why this match? Unpair
{{ a.mentor_label }} {{ a.mentee_label }} {{ "%.1f"|format(a.score) }} {{ a.explanation }} {% if not a.locked %} {% else %} {% endif %}

Manual assignment


Mentees without an assignment

{% if active_unassigned %}
{% for t in active_unassigned %} {% set attrs = t.attrs or {} %} {% endfor %}
Mentee Email CUNY ID Major
{{ t.first_name }} {{ t.last_name }} {% set cuny = attrs.get('CUNY ID# (EMPLID)', '') %}{% if cuny %}{{ cuny }}{% endif %} {{ t.email }} {{ attrs.get('CUNY ID# (EMPLID)', '') }} {{ attrs.get('Major', '') }}
{% else %}

All active mentees currently have a mentor assignment.

{% endif %} {% endblock %}