{% extends "base.html" %} {% block title %}Assign Users to Consultants{% endblock %} {% block content %}
| User | 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 %} |