github.com/rohankumardubey/aresdb@v0.0.2-0.20190517170215-e54e3ca06b9c/api/ui/debug/snapshot.html (about)

     1  <!DOCTYPE html>
     2  <html lang="en">
     3  <head>
     4      <meta charset="UTF-8">
     5      <title>Snapshot Jobs</title>
     6      <link rel="stylesheet" href="../node_modules/datatables.net-dt/css/jquery.dataTables.css" rel="stylesheet"
     7            type="text/css"/>
     8      <link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css"/>
     9      <link rel="stylesheet" type="text/css" href="../node_modules/jquery-ui-dist/jquery-ui.min.css">
    10      <link rel="stylesheet" type="text/css"
    11            href="../node_modules/jquery-datetimepicker/build/jquery.datetimepicker.min.css">
    12      <link rel="stylesheet" href="../node_modules/select2/dist/css/select2.css"/>
    13  
    14  
    15      <script src="../node_modules/jquery/dist/jquery.min.js"></script>
    16      <script src="../node_modules/datatables.net/js/jquery.dataTables.min.js"
    17              type="text/javascript"></script>
    18      <script src="../node_modules/jquery-ui-dist/jquery-ui.min.js"></script>
    19      <script src="../node_modules/jquery-datetimepicker/build/jquery.datetimepicker.full.js"></script>
    20      <script src="../node_modules/select2/dist/js/select2.min.js" type="text/javascript"></script>
    21      <script src="js/utils.js"></script>
    22      <script src="js/snapshot.js"></script>
    23      <script type='text/javascript'>
    24          $(document).ready(function () {
    25              initSchedulerViewer()
    26          });
    27      </script>
    28  </head>
    29  <body>
    30  
    31  <table id="running-job-table">
    32      <caption>
    33          <h2>Running Job</h2>
    34      </caption>
    35  </table>
    36  
    37  <div style="padding: 100px 0px;"/>
    38  
    39  <table id="past-runs-table">
    40      <caption>
    41          <h2>Past Runs</h2>
    42      </caption>
    43  </table>
    44  
    45  </body>
    46  </html>