|
@ -1,7 +1,4 @@ |
|
|
<div class="container"> |
|
|
<div class="d-flex justify-content-end"> |
|
|
<div class="row"> |
|
|
|
|
|
<div class="col"> |
|
|
|
|
|
<div class="d-flex justify-content-end"> |
|
|
|
|
|
<a |
|
|
<a |
|
|
color="primary" |
|
|
color="primary" |
|
|
i18n |
|
|
i18n |
|
@ -11,22 +8,17 @@ |
|
|
> |
|
|
> |
|
|
Add Tag |
|
|
Add Tag |
|
|
</a> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
<table |
|
|
<table |
|
|
class="gf-table w-100" |
|
|
class="gf-table w-100" |
|
|
mat-table |
|
|
mat-table |
|
|
matSort |
|
|
matSort |
|
|
matSortActive="name" |
|
|
matSortActive="name" |
|
|
matSortDirection="asc" |
|
|
matSortDirection="asc" |
|
|
[dataSource]="dataSource" |
|
|
[dataSource]="dataSource" |
|
|
> |
|
|
> |
|
|
<ng-container matColumnDef="name"> |
|
|
<ng-container matColumnDef="name"> |
|
|
<th |
|
|
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header="name"> |
|
|
*matHeaderCellDef |
|
|
|
|
|
class="px-1" |
|
|
|
|
|
mat-header-cell |
|
|
|
|
|
mat-sort-header="name" |
|
|
|
|
|
> |
|
|
|
|
|
<ng-container i18n>Name</ng-container> |
|
|
<ng-container i18n>Name</ng-container> |
|
|
</th> |
|
|
</th> |
|
|
<td *matCellDef="let element" class="px-1" mat-cell> |
|
|
<td *matCellDef="let element" class="px-1" mat-cell> |
|
@ -35,12 +27,7 @@ |
|
|
</ng-container> |
|
|
</ng-container> |
|
|
|
|
|
|
|
|
<ng-container matColumnDef="userId"> |
|
|
<ng-container matColumnDef="userId"> |
|
|
<th |
|
|
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header="userId"> |
|
|
*matHeaderCellDef |
|
|
|
|
|
class="px-1" |
|
|
|
|
|
mat-header-cell |
|
|
|
|
|
mat-sort-header="userId" |
|
|
|
|
|
> |
|
|
|
|
|
<ng-container i18n>User</ng-container> |
|
|
<ng-container i18n>User</ng-container> |
|
|
</th> |
|
|
</th> |
|
|
<td *matCellDef="let element" class="px-1" mat-cell> |
|
|
<td *matCellDef="let element" class="px-1" mat-cell> |
|
@ -57,18 +44,13 @@ |
|
|
> |
|
|
> |
|
|
<ng-container i18n>Activities</ng-container> |
|
|
<ng-container i18n>Activities</ng-container> |
|
|
</th> |
|
|
</th> |
|
|
<td *matCellDef="let element" class="px-1" mat-cell> |
|
|
<td *matCellDef="let element" class="px-1 text-right" mat-cell> |
|
|
{{ element.activityCount }} |
|
|
{{ element.activityCount }} |
|
|
</td> |
|
|
</td> |
|
|
</ng-container> |
|
|
</ng-container> |
|
|
|
|
|
|
|
|
<ng-container matColumnDef="actions" stickyEnd> |
|
|
<ng-container matColumnDef="actions" stickyEnd> |
|
|
<th |
|
|
<th *matHeaderCellDef class="px-1 text-center" i18n mat-header-cell></th> |
|
|
*matHeaderCellDef |
|
|
|
|
|
class="px-1 text-center" |
|
|
|
|
|
i18n |
|
|
|
|
|
mat-header-cell |
|
|
|
|
|
></th> |
|
|
|
|
|
<td *matCellDef="let element" class="px-1 text-center" mat-cell> |
|
|
<td *matCellDef="let element" class="px-1 text-center" mat-cell> |
|
|
<button |
|
|
<button |
|
|
class="mx-1 no-min-width px-2" |
|
|
class="mx-1 no-min-width px-2" |
|
@ -102,7 +84,4 @@ |
|
|
|
|
|
|
|
|
<tr *matHeaderRowDef="displayedColumns" mat-header-row></tr> |
|
|
<tr *matHeaderRowDef="displayedColumns" mat-header-row></tr> |
|
|
<tr *matRowDef="let row; columns: displayedColumns" mat-row></tr> |
|
|
<tr *matRowDef="let row; columns: displayedColumns" mat-row></tr> |
|
|
</table> |
|
|
</table> |
|
|
</div> |
|
|
|
|
|
</div> |
|
|
|
|
|
</div> |
|
|
|
|
|