viewTrustedDevices.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!DOCTYPE html>
  2. <html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{monitoring/layout}">
  3. <head>
  4. <title>Trusted Devices</title>
  5. <script th:inline="javascript">
  6. /*<![CDATA[*/
  7. var urls = {
  8. getRecords: /*[[@{/status/trustedDevs/getRecords}]]*/ ,
  9. revokeRecord: /*[[@{/status/trustedDevs/revokeRecord}]]*/
  10. };
  11. /*]]>*/
  12. </script>
  13. <script type="text/javascript" th:inline="javascript">
  14. function jqueryReady() {
  15. head.load(
  16. /*[[@{/css/trustedDevices.css}]]*/
  17. );
  18. head.load(
  19. /*[[@{/js/trustedDevices.js}]]*/
  20. );
  21. }
  22. </script>
  23. </head>
  24. <body id="cas">
  25. <div layout:fragment="content">
  26. <div id="trustedDevices">
  27. <h1>Manage Trusted Devices</h1>
  28. <div class="tabsContainer row">
  29. <!-- Nav tabs -->
  30. <ul id="myTabs" class="nav nav-tabs" role="tablist">
  31. <li role="presentation" class="nav-item"><a class="nav-link active" href="#trustedDevices" aria-controls="trustedDevices" role="tab"
  32. data-toggle="tab">Trusted Devices</a></li>
  33. </ul>
  34. <div class="tab-content">
  35. <div role="tabpanel" class="tab-pane active" id="trustedDevicesTab">
  36. <table id="trustedDevicesTable" class="table table-striped table-bordered">
  37. <thead>
  38. <tr>
  39. <th>Name</th>
  40. <th>Principal</th>
  41. <th>Date</th>
  42. <th>Geography</th>
  43. <th>Actions</th>
  44. </tr>
  45. </thead>
  46. <tbody>
  47. </tbody>
  48. </table>
  49. </div>
  50. </div>
  51. </div>
  52. <div th:replace="monitoring/fragments/footerButtons"/>
  53. </div>
  54. </div>
  55. </body>
  56. </html>