* initial commit

This commit is contained in:
Dávid Danyi
2018-04-06 23:01:07 +02:00
parent 73df66f187
commit 11aed00a05
34 changed files with 673 additions and 30 deletions

View File

@@ -0,0 +1,26 @@
<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>