75 lines
2.8 KiB
Plaintext
75 lines
2.8 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
|
pageEncoding="ISO-8859-1"%>
|
|
<%@page language="java" session="true" %>
|
|
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
<title>Nimble 1.0 | ${title }</title>
|
|
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
|
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
|
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
|
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
|
|
|
<link href="/matrix/css/menu.css" rel="stylesheet" type="text/css" />
|
|
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
|
<link href="/matrix/css/flexigrid.css" rel="stylesheet" type="text/css" media="all" />
|
|
|
|
<script language="javascript" src="/matrix/js/flexigrid.js" type="text/javascript"></script>
|
|
<script language="javascript" src="/matrix/js/jquery.tablesorter.js" type="text/javascript"></script>
|
|
<script language="javascript" src="/matrix/js/appjs/reporting.js" type="text/javascript"></script>
|
|
<style>
|
|
.bDiv{
|
|
height:600px !important;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
|
<div id='PageFrame'>
|
|
<!-- Title Bar -->
|
|
<div id='title' class="title">
|
|
<img id="icon" src="/matrix/images/optmale.png" />
|
|
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
|
<span id="title">Nimble 1.0 Allocated Computers | ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
|
</div>
|
|
<!-- -->
|
|
|
|
|
|
<div id="formcontainer" style="width:800px;margin-top:5px;position:absolute;z-index:-1">
|
|
|
|
<div style="border:1px solid #a7abb4;">
|
|
<table width="100%" id="allocatedpc">
|
|
<thead>
|
|
<tr>
|
|
<th width="15"></th>
|
|
<th width="70"><b>Date</b></th>
|
|
<th width="100"><b>User</b></th>
|
|
<th width="100"><b>Department</b></th>
|
|
<th width="375"><b>System Configuration</b></th>
|
|
<th width="45"><b>Status</b></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody id="tabbody">
|
|
<!-- Form (Filter) -->
|
|
${detailshtml}
|
|
<!-- -->
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<!-- -->
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<!-- Page Load Javascript -->
|
|
<script language="javascript" type="text/javascript">
|
|
centerDivBoth("formcontainer","H");
|
|
$('#allocatedpc').flexigrid();
|
|
$("#allocatedpc").tablesorter({debug: true});
|
|
</script>
|
|
<!-- -->
|
|
</html> |