You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
807 B
23 lines
807 B
<mat-card class="item" *ngIf="record">
|
|
<mat-grid-list cols="10" rowHeight="50">
|
|
<mat-grid-tile colspan="8">
|
|
<h2>{{ record.name }}</h2>
|
|
</mat-grid-tile>
|
|
<mat-grid-tile rowspan="2">
|
|
<button mat-fab color="primary" aria-label="Edit" (click)="edit.emit(record)">
|
|
<mat-icon>edit</mat-icon>
|
|
</button>
|
|
</mat-grid-tile>
|
|
<mat-grid-tile rowspan="2">
|
|
<button mat-fab color="primary" aria-label="Delete" (click)="delete.emit(record)">
|
|
<mat-icon>delete</mat-icon>
|
|
</button>
|
|
</mat-grid-tile>
|
|
<mat-grid-tile colspan="8">
|
|
<p>
|
|
{{ record.phoneNumber }}
|
|
</p>
|
|
</mat-grid-tile>
|
|
|
|
</mat-grid-list>
|
|
</mat-card>
|
|
|