- <h2 class="page-header">Athors</h2>
- <table class="table table-hover">
- <thead>
- <th>Firstname</th>
- <th>Lastname</th>
- </thead>
- <tbody ng-repeat="author in authors">
- <th>{{author.firstname}}</th>
- <th>{{author.lastname}}</th>
- <th class="float-right">
- <button class="btn-danger btn-xs pull-right" ng-click="deteteAuthor(author)"><i class="glyphicon glyphicon-trash"></i></button>
- <button class="btn-warning btn-xs pull-right"><i class="glyphicon glyphicon-pencil"></i></button>
-
- </th>
- </tbody>
- </table>
|