authors.template.html 686 B

12345678910111213141516171819
  1. <h2 class="page-header">Athors</h2>
  2. <a href="#" editable-text="user.name" onaftersave='updateUser()'>{{ user.name || "empty" }}</a>
  3. <table class="table table-hover">
  4. <thead>
  5. <th>Firstname</th>
  6. <th>Lastname</th>
  7. </thead>
  8. <tbody ng-repeat="author in authors">
  9. <th>{{author.firstname}}</th>
  10. <th>{{author.lastname}}</th>
  11. <th class="float-right">
  12. <button class="btn-danger btn-xs pull-right" ng-click="deteteAuthor(author)"><i class="glyphicon glyphicon-trash"></i></button>
  13. <button class="btn-warning btn-xs pull-right"><i class="glyphicon glyphicon-pencil"></i></button>
  14. </th>
  15. </tbody>
  16. </table>