{% extends "base.html" %} {% block title %}Customer Management{% endblock %} {% block content %}
Manage portal access for all customer accounts.
| Username | Full Name | Status | Assigned Contracts | Accessible Facilities | Created | ||
|---|---|---|---|---|---|---|---|
| {{ customer.username }} | {{ customer.full_name or '—' }} | {{ customer.email }} | {% if customer.active %} Active {% else %} Disabled {% endif %} | {% if assignments %} {% set project_names = assignments | map(attribute='project') | map(attribute='name') | unique | list %} {% for pname in project_names %} {{ pname }} {% endfor %} {% else %} — None — {% endif %} | {% if facility_ids %} {{ facility_ids|length }} facilit{{ 'y' if facility_ids|length == 1 else 'ies' }} {% else %} — None — {% endif %} | {{ customer.created_at.strftime('%Y-%m-%d') }} |
No customer accounts have been created yet.
Create First Customer