{% extends "base.html" %} {% block title %}Manage Client Executives — Admin{% endblock %} {% block content %}
← Admin Panel

Manage Client Executives

The CE list shown on the intake form. Separate from producers. Add, edit, or deactivate CEs — changes persist in the database (survive redeploys).

{% if user.role == 'superadmin' %} {% endif %}
{% for ce in ces %} {% endfor %} {% if not ces %} {% endif %}
# Code Name Email Status Action
{{ loop.index }} {{ 'Active' if ce.is_active else 'Inactive' }} {% if user.role == 'superadmin' %} {% if not ce.is_active %} {% endif %} {% else %} View only {% endif %}
No client executives yet. Add one above, or paste a list below.
{% if user.role == 'superadmin' %}

Bulk Add / Update

Paste one CE per line: Full Name, email@example.com (email optional). Codes auto-generate. Existing names get their email updated.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}