playlists.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <page-header model="ctrl.navModel"></page-header>
  2. <div class="page-container page-body">
  3. <div ng-if="ctrl.playlists.length > 0">
  4. <div class="page-action-bar">
  5. <div class="page-action-bar__spacer"></div>
  6. <a class="btn btn-success pull-right" href="playlists/create">
  7. <i class="fa fa-plus"></i>
  8. New Playlist
  9. </a>
  10. </div>
  11. <table class="filter-table">
  12. <thead>
  13. <th>
  14. <strong>Name</strong>
  15. </th>
  16. <th>
  17. <strong>Start url</strong>
  18. </th>
  19. <th style="width: 78px"></th>
  20. <th style="width: 78px"></th>
  21. <th style="width: 25px"></th>
  22. </thead>
  23. <tr ng-repeat="playlist in ctrl.playlists">
  24. <td>
  25. <a href="playlists/edit/{{playlist.id}}">{{playlist.name}}</a>
  26. </td>
  27. <td>
  28. <a href="playlists/play/{{playlist.id}}">playlists/play/{{playlist.id}}</a>
  29. </td>
  30. <td class="text-center">
  31. <a href="playlists/play/{{playlist.id}}" class="btn btn-inverse btn-small">
  32. <i class="fa fa-play"></i>
  33. Play
  34. </a>
  35. </td>
  36. <td class="text-right">
  37. <a href="playlists/edit/{{playlist.id}}" class="btn btn-inverse btn-small">
  38. <i class="fa fa-edit"></i>
  39. Edit
  40. </a>
  41. </td>
  42. <td class="text-right">
  43. <a ng-click="ctrl.removePlaylist(playlist)" class="btn btn-danger btn-small">
  44. <i class="fa fa-remove"></i>
  45. </a>
  46. </td>
  47. </tr>
  48. </table>
  49. </div>
  50. <div ng-if="ctrl.playlists.length === 0">
  51. <empty-list-cta model="{
  52. title: 'There are no playlists created yet',
  53. buttonIcon: 'fa fa-plus',
  54. buttonLink: 'playlists/create',
  55. buttonTitle: ' Create Playlist',
  56. proTip: 'You can run the playlist in Kiosk Mode.',
  57. proTipLink: 'http://docs.grafana.org/reference/playlist/',
  58. proTipLinkTitle: 'Learn more',
  59. proTipTarget: '_blank'
  60. }" />
  61. </div>
  62. </div>