40 lines
1.4 KiB
HTML
40 lines
1.4 KiB
HTML
<div class="container-fluid text-center">
|
|
<!-- First row: Assignment -->
|
|
<div class="row">
|
|
<!-- (1, 1): users -->
|
|
<div class="col-5">
|
|
<mat-tab-group>
|
|
<mat-tab label="Benutzer">
|
|
<app-user-table #users [onSelectedRows]="userOnSelectedRows"></app-user-table>
|
|
</mat-tab>
|
|
</mat-tab-group>
|
|
</div>
|
|
<!-- (1, 2): right groups -->
|
|
<div class="col-2">
|
|
<mat-tab-group>
|
|
<mat-tab label="Rich. Gruppen">
|
|
<app-group-table #rightGroups] [columns]="groupRightColumns" [onSelectedRows]="rightGroupOnSelectedRows"></app-group-table>
|
|
</mat-tab>
|
|
</mat-tab-group>
|
|
</div>
|
|
<!-- (1, 3): representations -->
|
|
<div class="col-2">
|
|
<mat-tab-group>
|
|
<mat-tab label="Rep. Benutzer">
|
|
<app-user-table #repUsers [onSelectedRows]="repUserOnSelectedRows"></app-user-table>
|
|
</mat-tab>
|
|
<mat-tab label="Rep. Gruppen">
|
|
<app-group-table #repGroups [columns]="groupRepCols" [onSelectedRows]="repGroupOnSelectedRows"></app-group-table>
|
|
</mat-tab>
|
|
</mat-tab-group>
|
|
</div>
|
|
<!-- (1, 4): assigned users -->
|
|
<div class="col-3">
|
|
<mat-tab-group>
|
|
<mat-tab label="{{useRepLabel}}">
|
|
<app-user-rep-table #userReps [initData]="initWithoutData" [onSelectedRows]="userRepOnSelectedRows"></app-user-rep-table>
|
|
</mat-tab>
|
|
</mat-tab-group>
|
|
</div>
|
|
</div>
|
|
</div> |