{% extends "base.html" %} {% block title %}Clients - Vera Medical CRM{% endblock %} {% block content %}

Insurance Clients

Manage insurance company information and relationships

{% if clients %} {% for client in clients %} {% endfor %} {% else %} {% endif %}
Company Name Location Total Cases Active Cases Actions
{{ client['company_name'] }}
{% if client['company_alias'] %}
{{ client['company_alias'] }}
{% endif %}
{{ client['city'] or 'N/A' }}{% if client['province'] %}, {{ client['province'] }}{% endif %}
{{ client['case_count'] or 0 }} {{ client['active_cases'] or 0 }} View

No clients found

{% endblock %}