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

26 lines
949 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>
<div class="ui raised segments">
<div class="ui segment">
<table *ngIf="teams?.length" class="ui celled definition table">
<thead>
<tr>
<th></th>
<th class="clickable">Team</th>
<th class="clickable">Members</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let team of teams">
<td class="collapsing">
<a [routerLink]="['/team/edit', team.id]" title="Change"><i
class="large edit link icon"></i></a>
</td>
<td>{{team.name}}</td>
<td>{{fancyMemberNames(team)}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>