Nach langem wieder committed

This commit is contained in:
Daniel Kirchmeier
2022-08-26 15:37:05 +02:00
commit 3c0d400505
141 changed files with 51160 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<div class="container col-5 float-left">
<div class="clearfix">
<div class="display-6">Module</div>
<button type="button" class="btn btn-primary float-left">Neu</button>
</div>
<mat-form-field appearance="standard">
<mat-label>Filter</mat-label>
<input matInput (keyup)="applyFilter($event)" placeholder="Suchbegriff" #input>
</mat-form-field>
<table mat-table [dataSource]="dataSource" matSort (matSortChange)="announceSortChange($event)" class="mat-elevation-z8">
<ng-container matColumnDef="moduleid">
<th class="kopf col-1" mat-header-cell *matHeaderCellDef> ID </th>
<td mat-cell *matCellDef="let mod"> {{mod.moduleid}} </td>
</ng-container>
<ng-container matColumnDef="moduleshort">
<th class="kopf col-1" mat-sort-header mat-header-cell *matHeaderCellDef> Modul </th>
<td mat-cell *matCellDef="let mod"> {{mod.moduleshort}} </td>
</ng-container>
<ng-container matColumnDef="modulename">
<th class="kopf col-5" mat-sort-header mat-header-cell *matHeaderCellDef> Name </th>
<td mat-cell *matCellDef="let mod"> {{mod.modulename}} </td>
</ng-container>
<ng-container matColumnDef="moduledescription">
<th class="kopf col-5" mat-sort-header mat-header-cell *matHeaderCellDef> Beschreibung </th>
<td mat-cell *matCellDef="let mod"> {{mod.moduledescription}} </td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let modrow; columns: displayedColumns;"></tr>
</table>
<mat-paginator class="mat-elevation-z8 mt-2" #paginator [pageSizeOptions]="[10, 20, 50]" showFirstLastButtons></mat-paginator>
</div>