dnet-docker/dnet-app/frontends/is/src/app/wf-confs/wf-confs.component.html

29 lines
931 B
HTML

<h2>{{section?.name}}: Configured Workflows</h2>
<button mat-stroked-button color="primary" (click)="openAddWfConfDialog()">
<mat-icon fontIcon="add"></mat-icon>
configure a new workflow
</button>
<table mat-table [dataSource]="wfsDatasource" matSort class="mat-elevation-z8">
<ng-container matColumnDef="k">
<th mat-header-cell *matHeaderCellDef style="width: 20%;" mat-sort-header sortActionDescription="Sort by ID"> Id
</th>
<td mat-cell *matCellDef="let element">
<a [routerLink]="['/wfs/conf', element.k]">{{element.k}}</a>
</td>
</ng-container>
<ng-container matColumnDef="v">
<th mat-header-cell *matHeaderCellDef style="width: 20%;" mat-sort-header sortActionDescription="Sort by Name"> Name
</th>
<td mat-cell *matCellDef="let element"> {{element.v}} </td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="colums"></tr>
<tr mat-row *matRowDef="let row; columns: colums;"></tr>
</table>