authors.template.html 598 B

12345678910111213141516
  1. <h2 class="page-header">Athors</h2>
  2. <table class="table table-hover">
  3. <thead>
  4. <th>Firstname</th>
  5. <th>Lastname</th>
  6. </thead>
  7. <tbody ng-repeat="author in authors">
  8. <th>{{author.firstname}}</th>
  9. <th>{{author.lastname}}</th>
  10. <th class="float-right">
  11. <button class="btn-danger btn-xs pull-right" ng-click="deteteAuthor(author)"><i class="glyphicon glyphicon-trash"></i></button>
  12. <button class="btn-warning btn-xs pull-right"><i class="glyphicon glyphicon-pencil"></i></button>
  13. </th>
  14. </tbody>
  15. </table>