Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <div class="panel panel-primary">
  2. <div class="panel-heading">
  3. <h2>Employee List</h2>
  4. </div>
  5. <div class="panel-body">
  6. <table class="table table-striped">
  7. <thead>
  8. <tr>
  9. <th>Firstname</th>
  10. <th>Lastname</th>
  11. <th>Email</th>
  12. <th>Actions</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <tr *ngFor="let employee of employees | async">
  17. <td>{{employee.firstName}}</td>
  18. <td>{{employee.lastName}}</td>
  19. <td>{{employee.emailId}}</td>
  20. <td><button (click)="deleteEmployee(employee.id)" class="btn btn-danger">Delete</button>
  21. <button (click)="employeeDetails(employee.id)" class="btn btn-info" style="marginleft:
  22. 10px">Details</button>
  23. </td>
  24. </tr>
  25. </tbody>
  26. </table>
  27. </div>
  28. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement