mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
845 B
20 lines
845 B
<tr [routerLink]="user.id" routerLinkActive="active">
|
|
<td class="cell-user">
|
|
<img class="user-picture" title="{{user.displayName}}" [src]="user | sqxUserDtoPicture" />
|
|
</td>
|
|
<td class="cell-auto">
|
|
<span class="user-name table-cell">{{user.displayName}}</span>
|
|
</td>
|
|
<td class="cell-auto">
|
|
<span class="user-email table-cell">{{user.email}}</span>
|
|
</td>
|
|
<td class="cell-actions">
|
|
<button type="button" class="btn btn-text" (click)="lock()" sqxStopClick *ngIf="user.canLock" title="Lock User">
|
|
<i class="icon icon-unlocked"></i>
|
|
</button>
|
|
<button type="button" class="btn btn-text" (click)="unlock()" sqxStopClick *ngIf="user.canUnlock" title="Unlock User">
|
|
<i class="icon icon-lock"></i>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
<tr class="spacer"></tr>
|