Contact Management

{#if show_add_form}
{ show_add_form = false; load_contacts(); if (new_con.contact_id_random) { goto(`/core/contacts/${new_con.contact_id_random}`); } }} onCancel={() => show_add_form = false} />
{/if}
Search Directory
{#if loading}
{:else if filtered_li.length === 0}

No Contacts Found

Business and support contacts will appear here.

{:else}

Directory Results {filtered_li.length} entries

{#each filtered_li as con (con.contact_id_random)}
{con.enable ? 'Active' : 'Disabled'}

{con.name || con.title || '--'}

{con.title || 'Support Contact'}

{con.email || 'No Email'}
{con.phone_office || con.phone_mobile || '--'}
Manage Contact
{/each}
{/if}