aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/admin/friends/friend-list/friend-list.component.html
blob: 06258f8c8a20f20e7f51a0161be27e892fcd21c6 (plain) (tree)
1
2
3
4
5
6
7
8
9

                     


                                 
                                         
                   

                           




                                       
                              
                                
                                 
                                                      



          
                                                                                                             


              
                                                                                                                   

              
<h3>Friends list</h3>

<table class="table table-hover">
  <thead>
    <tr>
      <th class="table-column-id">ID</th>
      <th>Host</th>
      <th>Score</th>
      <th>Created Date</th>
    </tr>
  </thead>

  <tbody>
    <tr *ngFor="let friend of friends">
      <td>{{ friend.id }}</td>
      <td>{{ friend.host }}</td>
      <td>{{ friend.score }}</td>
      <td>{{ friend.createdAt | date: 'medium' }}</td>
    </tr>
  </tbody>
</table>

<a *ngIf="friends && friends.length !== 0" class="add-user btn btn-danger pull-left" (click)="quitFriends()">
  Quit friends
</a>

<a *ngIf="friends?.length === 0" class="add-user btn btn-success pull-right" [routerLink]="['/admin/friends/add']">
  Make friends
</a>