Guest User

Untitled

a guest
Mar 19th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <table class="table table-bordered table-hover">
  2. <thead class="thead-light">
  3. <tr>
  4. <th>Id</th>
  5. <th>Name</th>
  6. <th>Species</th>
  7. <th>Gender</th>
  8. <th>Homeworld</th>
  9. <th>Actions</th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <tr>
  14. <sl-record *ngFor="let recordElement of records" [record]="recordElement"></sl-record>
  15. </tr>
  16. </tbody>
  17. </table>
  18.  
  19. <tr>
  20. <td>{{record.id}}</td>
  21. <td>{{record.name}}</td>
  22. <td>{{record.species}}</td>
  23. <td>{{record.gender}}</td>
  24. <td>{{record.homeworld}}</td>
  25. <td>
  26. <div class="btn-group btn-group-sm" role="group" aria-label="Actions">
  27. <button type="button" class="btn btn-secondary">
  28. <i class="fa fa-pencil" aria-hidden="true"></i> Edit
  29. </button>
  30. <button type="button" class="btn btn-danger">
  31. <i class="fa fa-trash-o" aria-hidden="true"></i> Remove
  32. </button>
  33. </div>
  34. </td>
  35. </tr>
Add Comment
Please, Sign In to add comment