145 lines
3.6 KiB
PHP
145 lines
3.6 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<link rel="icon" href="../../favicon.ico">
|
|
|
|
<title><?php echo $OJ_NAME?></title>
|
|
<?php include("template/$OJ_TEMPLATE/css.php");?>
|
|
|
|
|
|
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
<!--[if lt IE 9]>
|
|
<script src="http://cdn.bootcss.com/html5shiv/3.7.0/html5shiv.js"></script>
|
|
<script src="http://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
<?php include("template/$OJ_TEMPLATE/nav.php");?>
|
|
<!-- Main component for a primary marketing message or call to action -->
|
|
<div class="jumbotron">
|
|
<h1>Problem <?php echo $id ?> Status</h1>
|
|
<center><table><tr><td>
|
|
<table id='statics' >
|
|
<?php
|
|
$cnt=0;
|
|
foreach($view_problem as $row){
|
|
if ($cnt)
|
|
echo "<tr class='oddrow'>";
|
|
else
|
|
echo "<tr class='evenrow'>";
|
|
foreach($row as $table_cell){
|
|
echo "<td>";
|
|
echo "\t".$table_cell;
|
|
echo "</td>";
|
|
}
|
|
echo "</tr>";
|
|
$cnt=1-$cnt;
|
|
}
|
|
?>
|
|
<tr id=pie bgcolor=white><td colspan=2><div id='PieDiv' style='position:relative;height:150px;width:200px;'></div></tr>
|
|
</table><br>
|
|
<?php if(isset($view_recommand)){?>
|
|
<table id=recommand ><tr><td>
|
|
Recommanded Next Problem<br>
|
|
<?php
|
|
$cnt=1;
|
|
foreach($view_recommand as $row){
|
|
echo "<a href=problem.php?id=$row[0]>$row[0]</a> ";
|
|
if($cnt%3==0) echo "<br>";
|
|
$cnt++;
|
|
}
|
|
?>
|
|
</td></tr>
|
|
</table>
|
|
<?php }?>
|
|
</td><td>
|
|
<table id=problemstatus><thead>
|
|
<tr class=toprow><th style="cursor:hand" onclick="sortTable('problemstatus', 0, 'int');"><?php echo $MSG_Number?>
|
|
<th>RunID
|
|
<th><?php echo $MSG_USER?>
|
|
<th ><?php echo $MSG_MEMORY?>
|
|
<th ><?php echo $MSG_TIME?>
|
|
<th><?php echo $MSG_LANG?>
|
|
<th ><?php echo $MSG_CODE_LENGTH?>
|
|
<th><?php echo $MSG_SUBMIT_TIME?></tr></thead><tbody>
|
|
<?php
|
|
$cnt=0;
|
|
foreach($view_solution as $row){
|
|
if ($cnt)
|
|
echo "<tr class='oddrow'>";
|
|
else
|
|
echo "<tr class='evenrow'>";
|
|
foreach($row as $table_cell){
|
|
echo "<td>";
|
|
echo "\t".$table_cell;
|
|
echo "</td>";
|
|
}
|
|
echo "</tr>";
|
|
$cnt=1-$cnt;
|
|
}
|
|
?>
|
|
</table>
|
|
<?php
|
|
echo "<a href='problemstatus.php?id=$id'>[TOP]</a>";
|
|
echo " <a href='status.php?problem_id=$id'>[STATUS]</a>";
|
|
if ($page>$pagemin){
|
|
$page--;
|
|
echo " <a href='problemstatus.php?id=$id&page=$page'>[PREV]</a>";
|
|
$page++;
|
|
}
|
|
if ($page<$pagemax){
|
|
$page++;
|
|
echo " <a href='problemstatus.php?id=$id&page=$page'>[NEXT]</a>";
|
|
$page--;
|
|
}
|
|
?>
|
|
</table>
|
|
<script type="text/javascript" src="include/wz_jsgraphics.js"></script>
|
|
<script type="text/javascript" src="include/pie.js"></script>
|
|
<script language="javascript">
|
|
var y= new Array ();
|
|
var x = new Array ();
|
|
var dt=document.getElementById("statics");
|
|
var data=dt.rows;
|
|
var n;
|
|
for(var i=3;dt.rows[i].id!="pie";i++){
|
|
x.push(dt.rows[i].cells[0].innerHTML);
|
|
n=dt.rows[i].cells[1];
|
|
n=n.innerText || n.textContent;
|
|
//alert(n);
|
|
n=parseInt(n);
|
|
y.push(n);
|
|
}
|
|
var mypie= new Pie("PieDiv");
|
|
mypie.drawPie(y,x);
|
|
//mypie.clearPie();
|
|
</script>
|
|
|
|
</div>
|
|
|
|
</div> <!-- /container -->
|
|
|
|
|
|
<!-- Bootstrap core JavaScript
|
|
================================================== -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<?php include("template/$OJ_TEMPLATE/js.php");?>
|
|
<script type="text/javascript" src="include/jquery.tablesorter.js"></script>
|
|
<script type="text/javascript">
|
|
$(document).ready(function()
|
|
{
|
|
$("#problemstatus").tablesorter();
|
|
}
|
|
);
|
|
</script>
|
|
</body>
|
|
</html>
|