* Result.BUILDING added
* team editor is mostly done * commit tracker works and is styled * added new components for slide editor, still empty * team resolver service
This commit is contained in:
@@ -1,26 +1,22 @@
|
||||
<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>
|
||||
<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>
|
||||
</div>
|
||||
Reference in New Issue
Block a user