Added groups - missing user management. Fixed several issues.
This commit is contained in:
21
src/app/groups/group-item/group-item.component.html
Normal file
21
src/app/groups/group-item/group-item.component.html
Normal file
@ -0,0 +1,21 @@
|
||||
<article>
|
||||
<section class="title">{{item().group.name}}
|
||||
@if (special) {
|
||||
<small class="tag">auto-generated</small>
|
||||
}
|
||||
</section>
|
||||
<section class="">{{item().group.priority}}</section>
|
||||
<section>
|
||||
{{item().chatters.length}}
|
||||
<small class="muted block">user{{item().chatters.length == 1 ? '' : 's'}}</small>
|
||||
</section>
|
||||
<section>
|
||||
{{item().policies.length}}
|
||||
<small class="muted block">polic{{item().chatters.length == 1 ? 'y' : 'ies'}}</small>
|
||||
</section>
|
||||
<section>
|
||||
<button mat-button (click)="router.navigate([link])">
|
||||
<mat-icon>pageview</mat-icon>View
|
||||
</button>
|
||||
</section>
|
||||
</article>
|
Reference in New Issue
Block a user