Merge branch 'feature/webtorrent-disabling' into develop
[oweals/peertube.git] / client / src / app / +admin / users / user-list / user-list.component.html
index ae8921802946ff642145388eeff6b82e70bd0c8d..eb8d30e17f6a3ac10bc403709f132ad04a50a5a3 100644 (file)
 
   <ng-template pTemplate="header">
     <tr>
-      <th style="width: 40px"></th>
       <th style="width: 40px">
+        <p-tableHeaderCheckbox></p-tableHeaderCheckbox>
       </th>
+      <th style="width: 40px"></th>
       <th i18n pSortableColumn="username">Username <p-sortIcon field="username"></p-sortIcon></th>
       <th i18n>Email</th>
       <th i18n>Video quota</th>
       </td>
 
       <td>
-        {{ user.username }}
-        <span *ngIf="user.blocked" class="banned-info">(banned)</span>
+        <a i18n-title title="Go to the account page" target="_blank" rel="noopener noreferrer" [routerLink]="[ '/accounts/' + user.username ]">
+          {{ user.username }}
+          <span i18n *ngIf="user.blocked" class="banned-info">(banned)</span>
+        </a>
       </td>
       <td>{{ user.email }}</td>
       <td>{{ user.videoQuotaUsed }} / {{ user.videoQuota }}</td>