Newer
Older
ubFramework / Portal / docroot / templates / admin / index / index_tv.html
@Christopher W. Olsen Christopher W. Olsen on 10 Dec 2017 2 KB Cleaning Up Making It A Sub Module
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
  <meta name="description" content="uBix Technologies" />
  <meta name="keywords" content="ubix,technologies,servers,hardware,new york,city,storage,email,hosting,serving,web" />

  <link href="/global/global.manage_tv.css" rel="stylesheet" type="text/css" />
  <link rel="stylesheet" href="/js/themes/base/jquery.ui.all.css" />
  
  <link rel="stylesheet" type="text/css" href="/assets/css/easyui/themes/default/easyui.css" />
  <link rel="stylesheet" type="text/css" href="/assets/css/easyui/themes/icon.css" />

  <script src="/global/js/styleswitcher.js" type="text/javascript"></script>
  <script src="/js/jquery-1.9.1.js"></script>
  <!--  <script src="/js/ui/jquery-ui.js"></script> -->
  
  <script type="text/javascript" src="/assets/js/easyui/jquery.easyui.min.js"></script>

<script>
$(function() {
  function grid_refresh() {
    $('#tt').datagrid('reload'); // reload grid
    setTimeout(grid_refresh, 25000); // schedule next refresh after 15sec
//    $('#rb').text('test');
  }

  grid_refresh();

  $('#tt').datagrid({
    rowStyler:function(index,row){
      if (row.od > 0) {
        return 'background-color:pink;color:blue;font-weight:bold;';
      }
    }
  });
});
</script>

  <link href='http://fonts.googleapis.com/css?family=Raleway:400,500,600,700,800,900' rel='stylesheet' type='text/css' />

  <title>{_SITE_NAME}: Admin - {PAGE_TITLE}</title>
</head>

<body style="background-color: {BACKGROUND_COLOR};">
<div id="homepagecontent" style="position: absolute;bottom: 20px;top: 20px;left: 20px; right: 20px;">
  <div style="float: left;"><img src="/images/psctech_2_hz_logo.png" border="0" /></div>
  <div style="float: left;"><p id="rb" style="margin-left: 250px;margin-top: 30px;font-size: 50px;font-weight: 600;color: {RATIO_COLOR};">{RATIO_NOTIFICATION}</p></div>
  <div style="clear: both;" />
  </div>
  {BODY}
  </div>
</div>
</body>
</html>