github.com/rohankumardubey/aresdb@v0.0.2-0.20190517170215-e54e3ca06b9c/api/ui/debug/batch.html (about) 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Debugger</title> 5 <meta name="referrer" content="no-referrer" /> 6 <link rel="stylesheet" type="text/css" href="css/batch.css"> 7 <link rel="stylesheet" type="text/css" href="../node_modules/jquery-datetimepicker/build/jquery.datetimepicker.min.css"> 8 9 <script src="../node_modules/jquery/dist/jquery.min.js"></script> 10 <script src="../node_modules/jquery-datetimepicker/build/jquery.datetimepicker.full.js"></script> 11 </head> 12 13 <body> 14 <h2>Batch Viewer</h2> 15 <table style="width:100%"> 16 <tr> 17 <td> 18 <table> 19 <tr><td><div id="shard-pick"></div></td></tr> 20 <tr><td><div id="batch-load"></div></td></tr> 21 </table> 22 </td> 23 <td> 24 <div id="primary-key-view"></div> 25 </td> 26 </tr> 27 </table> 28 <hr> 29 <div> 30 <table class="grid-table" style="width: 100%"> 31 <tr> 32 <td style="width: 10%; border-right: solid 2px #3b4151;"> 33 <table style="width:100%"> 34 <thead> 35 <th>BatchID</th> 36 <th>BatchSize</th> 37 </thead> 38 </table> 39 <div style="width:100%; height: 1200px; overflow:auto;"> 40 <table class="batch-table hover-table" style="width: 100%;"> 41 <tbody id="batch-table-body"></tbody> 42 </table> 43 </div> 44 </td> 45 <td style="width: 90%; padding-left: 20px;"> 46 <div> 47 <div id="batch-pagination" class="pagination"></div> 48 <span id="row-jump"> 49 <label for="row-number-input">Row: </label><input class="small-input" id="row-number-input" type="number" placeholder="0"/> 50 </span> 51 </div> 52 <div style="width:100%; height: 1200px; overflow:auto;"> 53 <table class="data-table" style="width: 100%"> 54 <thead id="table-header" class="data-table"></thead> 55 <tbody id="table-data" class="data-table"></tbody> 56 </table> 57 </div> 58 </td> 59 </tr> 60 </table> 61 </div> 62 <script src="js/batch.js"></script> 63 </body> 64 </html>