{% extends "base.html" %} {% block title %}Assign Users to Consultants{% endblock %} {% block content %}

Assign Users to Consultants

New Assignment
Current User-Consultant Assignments
{% for user in users %} {% endfor %}
User Email Assigned Consultant Consultant Email Actions
{{ user.username }} {{ user.email }} {% if user.assigned_consultant %} {{ user.assigned_consultant.username }} {% else %} Not Assigned {% endif %} {% if user.assigned_consultant %} {{ user.assigned_consultant.email }} {% else %} - {% endif %} {% if user.assigned_consultant %}
{% else %} No action needed {% endif %}
{% endblock %}