2
0

clients_en.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <div>
  2. <div class="accordion">
  3. <div class="accordion-group">
  4. <div class="accordion-heading" sc-collapse="in">
  5. <a class="accordion-toggle" href="javascript:void(0)">
  6. System Clients
  7. </a>
  8. </div>
  9. <div id="collapseOne" class="accordion-body collapse">
  10. <div class="accordion-inner">
  11. <table class="table table-striped table-bordered">
  12. <tr>
  13. <th>ID</th>
  14. <th>IP</th>
  15. <th>Vhost</th>
  16. <th>Stream</th>
  17. <th>Type</th>
  18. <th>Duration</th>
  19. <th>URL</th>
  20. <th>Category</th>
  21. <th>Manage</th>
  22. </tr>
  23. <tr ng-repeat="client in clients">
  24. <td><a href="javascript:void(0)" ng-click="gogogo('/clients/' + client.id)">{{client.id}}</a></td>
  25. <td>{{client.ip}}</td>
  26. <td><a href="javascript:void(0)" ng-click="gogogo('/vhosts/' + client.vhost)">{{client.vhost}}</a></td>
  27. <td><a href="javascript:void(0)" ng-click="gogogo('/streams/' + client.stream)">{{client.stream}}</a></td>
  28. <td>{{client.publish| sc_filter_ctype}}</td>
  29. <td>{{client.alive| sc_filter_time}}</td>
  30. <td>{{client |sc_filter_streamURL}}</td>
  31. <td>{{client.type}}</td>
  32. <td>
  33. <a ng-click="kickoff(client)" href="javascript:void(0)">Kickoff It</a>
  34. </td>
  35. </tr>
  36. </table>
  37. </div>
  38. </div>
  39. </div>
  40. </div>
  41. </div>