service-provider-app/src/app/preparer/edit/edit-preparer.component.html

30 lines
1.3 KiB
HTML
Raw Normal View History

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>
<mat-expansion-panel>
<mat-expansion-panel-header>
<mat-panel-title> Contacts </mat-panel-title>
</mat-expansion-panel-header>
<app-contacts [clientid]="clientid" [userPreferences]="userPreferences"></app-contacts>
</mat-expansion-panel>
<!--
<mat-expansion-panel>
<mat-expansion-panel-header>
<mat-panel-title> Locations </mat-panel-title>
</mat-expansion-panel-header>
<app-location [clientid]="clientid" [isEditMode]="isEditMode"
[userPreferences]="userPreferences"></app-location>
</mat-expansion-panel> -->
</mat-accordion>