Files
quartz-manager/quartz-manager-frontend/src/app/components/trigger-list/trigger-list.component.html
2022-08-04 00:43:53 +02:00

20 lines
936 B
HTML

<mat-card fxFlex="1 1 auto" style="padding-left: 0; padding-right: 0">
<mat-card-header fxLayout="row" fxLayoutAlign="space-between none" style="padding-right: 1em;" >
<mat-card-subtitle><b>TRIGGERS</b></mat-card-subtitle>
<button mat-raised-button style="top: -0.5em" color="primary" (click)="openNewTriggerForm()">
new
</button>
</mat-card-header>
<mat-divider></mat-divider>
<mat-card-content style="position: relative; height: 100%">
<mat-nav-list style="overflow-y: auto; position: absolute; left: 0; right: 0; top: 0; bottom: 0; overflow: auto; height: calc(100% - 3em)">
<mat-list-item *ngFor="let triggerKey of triggerKeys">
<a matLine href="...">{{ triggerKey.name }}</a>
<!-- <button mat-icon-button (click)="showInfo(link)">-->
<!-- <mat-icon>info</mat-icon>-->
<!-- </button>-->
</mat-list-item>
</mat-nav-list>
</mat-card-content>
</mat-card>