mtas-tv-frontend/src/app/admin/team-list/team-list.component.html

22 lines
813 B
HTML
Raw Normal View History

2018-04-06 23:01:07 +02:00
<div class="ui main container">
<h1 class="ui dividing header">Teams</h1>
<table *ngIf="teams?.length" class="ui large padded celled definition table">
<thead>
<tr>
<th></th>
<th class="clickable"><i class="large address book outline icon"></i>Team</th>
<th class="clickable"><i class="large users icon"></i>Members</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let team of teams">
<td class="collapsing">
<a [routerLink]="['/admin/team/edit', team.id]" title="Change"><i
class="large fitted pencil alternate icon"></i></a>
</td>
<td>{{team.name}}</td>
<td>{{fancyMemberNames(team)}}</td>
</tr>
</tbody>
</table>
2018-04-06 23:01:07 +02:00
</div>