2025-06-06 07:38:11 -03:00
|
|
|
<h2 *ngIf="this.clientName" class="page-header">Manage {{this.clientName}}</h2>
|
|
|
|
|
|
|
|
|
|
<div class="preparer-action-buttons">
|
|
|
|
|
<button mat-button (click)="accordion().openAll()">Expand All</button>
|
|
|
|
|
<button mat-button (click)="accordion().closeAll()">Collapse All</button>
|
|
|
|
|
</div>
|
|
|
|
|
<mat-accordion class="preparer-headers-align" multi>
|
|
|
|
|
<mat-expansion-panel>
|
|
|
|
|
<mat-expansion-panel-header>
|
|
|
|
|
<mat-panel-title> Basic Details </mat-panel-title>
|
|
|
|
|
</mat-expansion-panel-header>
|
|
|
|
|
|
|
|
|
|
<app-basic-details [clientid]="clientid" [isEditMode]="isEditMode"
|
|
|
|
|
(clientName)="onClientNameUpdate($event)"></app-basic-details>
|
|
|
|
|
</mat-expansion-panel>
|
2025-07-10 22:43:00 -03:00
|
|
|
|
2025-06-06 07:38:11 -03:00
|
|
|
<mat-expansion-panel>
|
|
|
|
|
<mat-expansion-panel-header>
|
2025-07-10 22:43:00 -03:00
|
|
|
<mat-panel-title> Locations </mat-panel-title>
|
2025-06-06 07:38:11 -03:00
|
|
|
</mat-expansion-panel-header>
|
2025-07-10 22:43:00 -03:00
|
|
|
<app-location [clientid]="clientid" [userPreferences]="userPreferences"></app-location>
|
2025-06-06 07:38:11 -03:00
|
|
|
</mat-expansion-panel>
|
2025-06-08 00:03:38 -03:00
|
|
|
|
2025-06-06 07:38:11 -03:00
|
|
|
<mat-expansion-panel>
|
|
|
|
|
<mat-expansion-panel-header>
|
2025-07-10 22:43:00 -03:00
|
|
|
<mat-panel-title> Contacts </mat-panel-title>
|
2025-06-06 07:38:11 -03:00
|
|
|
</mat-expansion-panel-header>
|
2025-07-10 22:43:00 -03:00
|
|
|
<app-contacts [clientid]="clientid" [userPreferences]="userPreferences"></app-contacts>
|
2025-06-08 00:03:38 -03:00
|
|
|
</mat-expansion-panel>
|
2025-07-10 22:43:00 -03:00
|
|
|
|
2025-06-06 07:38:11 -03:00
|
|
|
</mat-accordion>
|