26 lines
949 B
HTML
26 lines
949 B
HTML
|
|
<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>
|