| stevenvanrossem | f5ebfcf | 2017-04-23 17:49:32 +0200 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="utf-8"> |
| 5 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 7 | <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> |
| 8 | <title>Emulator Dashboard</title> |
| 9 | |
| 10 | <!-- Bootstrap --> |
| 11 | <!--<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">--> |
| 12 | <link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/flatly/bootstrap.min.css" rel="stylesheet" integrity="sha384-+ENW/yibaokMnme+vBLnHMphUYxHs34h9lpdbSLuAwGkOKFRl4C34WkjazBtb7eT" crossorigin="anonymous"> |
| 13 | |
| 14 | <link href="css/main.css" rel="stylesheet"> |
| 15 | |
| 16 | <!-- jQuery --> |
| 17 | <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js" type="text/javascript"></script> |
| 18 | <!--<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.jss" type="text/javascript"></script>--> |
| 19 | <script src="https://cdnjs.cloudflare.com/ajax/libs/bootbox.js/4.4.0/bootbox.min.js" type="text/javascript"></script> |
| 20 | |
| 21 | <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> |
| 22 | <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> |
| 23 | <!--[if lt IE 9]> |
| 24 | <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> |
| 25 | <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> |
| 26 | <![endif]--> |
| 27 | |
| peusterm | 4b093f6 | 2017-05-19 10:25:01 +0200 | [diff] [blame] | 28 | <script src="js/main_upb.js" type="text/javascript"></script> |
| stevenvanrossem | f5ebfcf | 2017-04-23 17:49:32 +0200 | [diff] [blame] | 29 | |
| 30 | |
| 31 | </head> |
| 32 | <style> |
| 33 | |
| 34 | .link { |
| 35 | stroke: #ccc; |
| 36 | } |
| 37 | |
| 38 | .node text { |
| 39 | pointer-events: none; |
| 40 | font: 15px sans-serif; |
| 41 | } |
| 42 | |
| 43 | </style> |
| 44 | <body> |
| 45 | <div id="page-top"> |
| 46 | <div class="row"> |
| 47 | <div class="col-sm-8"><h1>Emulator Dashboard</h1></div> |
| 48 | <div class="col-sm-4" id="logo"><a href="http://sonata-nfv.eu" target="_blank"><img src="img/SONATA_new.png" alt="SONATA Logo" width="252" height="70"></a></div> |
| 49 | </div> |
| 50 | |
| stevenvanrossem | f5ebfcf | 2017-04-23 17:49:32 +0200 | [diff] [blame] | 51 | </div> |
| 52 | <div id="content"> |
| 53 | |
| 54 | |
| 55 | <div class="panel panel-primary"> |
| 56 | <!-- Default panel contents --> |
| 57 | <div class="panel-heading"><span>Emulated Datacenters</span> <span class="badge" id="lbl_datacenter_count">0</span><span class="pull-right" id="lbl_lateness_datacenter">Lateness: -</span></div> |
| 58 | <!-- Table --> |
| 59 | <table class="table table-striped table-hover" id="table_datacenter"> |
| 60 | </table> |
| 61 | </div> |
| 62 | |
| 63 | <div class="spacer"> </div> |
| 64 | |
| 65 | <div class="panel panel-primary"> |
| 66 | <!-- Default panel contents --> |
| 67 | <div class="panel-heading"><span>Running Containers</span> <span class="badge" id="lbl_container_count">0</span><span class="pull-right" id="lbl_lateness_container">Lateness: -</span></div> |
| 68 | <!-- Table --> |
| 69 | <table class="table table-striped table-hover" id="table_container"> |
| 70 | </table> |
| 71 | </div> |
| 72 | |
| stevenvanrossem | f5ebfcf | 2017-04-23 17:49:32 +0200 | [diff] [blame] | 73 | |
| 74 | </div> |
| 75 | |
| peusterm | 4b093f6 | 2017-05-19 10:25:01 +0200 | [diff] [blame] | 76 | <footer class="footer text-center small">(c) 2017 by SONATA Consortium, Paderborn University and IMEC</footer> |
| stevenvanrossem | f5ebfcf | 2017-04-23 17:49:32 +0200 | [diff] [blame] | 77 | |
| 78 | |
| 79 | </body> |
| 80 | |
| 81 | </html> |