Files
syncthing/src/app/list/status-list/status-list.component.html
T

10 lines
458 B
HTML

<mat-card class="{{elevation}}">
<div fxLayout="row" fxLayoutAlign="space-between start">
<mat-card-title>Status</mat-card-title>
<app-status-toggle (statusEvent)="onToggle($event)"></app-status-toggle>
</div>
<mat-card-content>
<app-folder-list *ngIf="currentStatus===status.Folders"></app-folder-list>
<app-device-list *ngIf="currentStatus===status.Devices"></app-device-list>
</mat-card-content>
</mat-card>