nise/nise-frontend/src/app/banlist/banlist.component.html

32 lines
804 B
HTML
Raw Normal View History

2024-03-08 07:18:44 +00:00
<div class="main term mb-2">
<div class="fade-stuff">
<h1 class="mb-4"># follow-list</h1>
<table *ngIf="this.follows">
<thead>
<tr>
<th colspan="2">Username</th>
<th>Is banned?</th>
<th>Last check</th>
<th></th>
</tr>
</thead>
<tbody>
<tr *ngFor="let user of this.follows.follows">
<td>
<img [src]="'https://a.ppy.sh/' + user.userId" class="avatar" style="width: 16px; min-height: 16px; height: 16px;">
</td>
<td>
<a [routerLink]="['/u', user.username]">
{{ user.username }}
</a>
</td>
<td>{{ user.isBanned }}</td>
<td>{{ calculateTimeAgo(user.lastUpdate) }}</td>
<td>
</td>
</tbody>
</table>
</div>
</div>