Files
ipwa/src/app/admin-view/groups/groups.component.html

9 lines
419 B
HTML

<button mat-raised-button color="accent" (click)="newGroup()">Nowa grupa</button>
<mat-card *ngFor="let item of groups">
<mat-card-header>
<mat-card-title contenteditable appCe (edit)="nameEdit(item._id, $event)">{{item.name}}</mat-card-title>
</mat-card-header>
<mat-card-actions>
<button mat-button color="warn" (click)="remove(item._id)">Usuń</button>
</mat-card-actions>
</mat-card>