Files
2025-02-26 14:49:25 +07:00

172 lines
7.1 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="js/lib/jquery-latest.js"></script>
<script type="text/javascript" src="js/lib/jquery-ui-latest.js"></script>
<script type="text/javascript" src="js/lib/jquery.dataTables.js"></script>
<script type="text/javascript" src="js/lib/jquery.ambiance.js"></script>
<script type="text/javascript" src="js/LoadLanguage.js"></script>
<script type="text/javascript" src="js/server.js"></script>
<link rel="stylesheet" type="text/css" href="css/demo_table_jui.css">
<link rel="stylesheet" type="text/css" href="css/jquery.ambiance.css" />
<link type="text/css" href="css/ui.panel.css" rel="stylesheet" />
<!-- <link rel="stylesheet" type="text/css" href="css/jquery.ui.all.css" />
-->
<style type="text/css">
html,
body {
font-size: 80%;
background: #000;
}
#serverTable table {
width: 100%;
font-size: 100%;
}
#serverTable th,
td {
padding: 14px !important;
}
#serverTable th,
td {
text-align: justify;
}
#serverTable tr.odd {
background-color: #bbbbbb;
}
#serverTable tr.even {
background-color: #fff;
}
table#serverTable tr.even.row_selected td {
background-color: #718ea0;
}
table#serverTable tr.odd.row_selected td {
background-color: #718ea0;
}
</style>
</head>
<body style="padding: 10px">
<div style="margin-top: 5px;">
<button id="verifyBtn" class="cssButton">Verify</button>
<button id="addBtn" class="cssButton">Add</button>
<button id="editBtn" class="cssButton">Edit</button>
<button id="deleteBtn" class="cssButton">Delete</button>
</div>
<div id="serversDiv" style="margin-top: 15px;">
<table id="serverTable" width="100%" style="font-size: 14px;border-collapse: collapse;">
<thead>
<tr>
<th style="text-align: center"></th>
<th id="lblDescription">Description</th>
<th id="lblAETitle">AE Title</th>
<th id="lblHostName">Host Name</th>
<th id="lblDicomPort">DICOM Port</th>
<th id="lblRetrieve">Retrieve Type</th>
<th id="lblWadoCxt">WADO Context</th>
<th id="lblWadoPort">WADO Port</th>
<th id="lblImageType">Image Type</th>
<th id="lblPreviews">Previews</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="panel4" class="panel ui-helper-reset ui-widget ui-panel" style="width: 35%;height: 23%;margin-bottom: 20px;" role="panel">
<h3 class="ui-helper-reset ui-widget-header ui-panel-header ui-corner-top">
<div class="ui-panel-title">
<span class="ui-panel-title-text">Listener</span>
</div>
</h3>
<div class="ui-helper-reset ui-widget-content ui-panel-content ui-corner-bottom" style="display: block;">
<div class="ui-panel-content-text" id="panel4_content">
<table style="width: 100%;font-size:14px;" id="listenerTable" cellpadding="3">
<tbody>
<tr>
<td width="45%"><span class="ui-widget-content" id="lblAET" style="border: none;">AE Title</span></td>
<td><input type="text" size="15" id="listener_ae"></td>
</tr>
<tr>
<td><span class="ui-widget-content" id="lblport" style="border: none;">Port</span></td>
<td><input type="text" size="15" id="listener_port"></td>
</tr>
<tr>
<td></td>
<td><button id="updateListener" class="cssButton">Update</button></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div id="panel5" class="panel ui-helper-reset ui-widget ui-panel" style="width: 35%;margin-bottom: 20px;" role="panel">
<h3 class="ui-helper-reset ui-widget-header ui-panel-header ui-corner-top">
<div class="ui-panel-title">
<span class="ui-panel-title-text">iOviyam 2.0 Context</span>
</div>
</h3>
<div class="ui-helper-reset ui-widget-content ui-panel-content ui-corner-bottom" style="display: block;">
<div class="ui-panel-content-text" id="panel5_content">
<table style="width: 100%;font-size:14px;" id="ioviyamCxtTable" cellpadding="3">
<tbody>
<tr>
<td width="45%"><span class="ui-widget-content" id="lblIoviyamCxt" style="border: none;">iOviyam Context</span></td>
<td><input type="text" size="15" id="ioviyamCxt"></td>
</tr>
<tr>
<td></td>
<td><button id="updIoviyamCxt" class="cssButton">Update</button></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div id="panel6" class="panel ui-helper-reset ui-widget ui-panel" style="width: 35%;height: 15%;margin-bottom: 20px;" role="panel">
<h3 class="ui-helper-reset ui-widget-header ui-panel-header ui-corner-top">
<div class="ui-panel-title">
<span class="ui-panel-title-text">Download Study</span>
</div>
</h3>
<div class="ui-helper-reset ui-widget-content ui-panel-content ui-corner-bottom" style="display: block;">
<div class="ui-panel-content-text" id="panel6_content">
<table style="width: 100%;font-size:14px;" id="downloadStudyTable" cellpadding="3">
<tbody>
<tr>
<td width="45%"><span class="ui-widget-content" id="lblDownloadStudy" style="border: none;">Users can download DICOM Study / Images</span></td>
<td>
<select id="downloadStudy" style="width:100px;">
<option value="Yes">Yes</option>
<option value="No">No</option>
</select>
</td>
</tr>
<tr>
<td></td>
<td><button id="updDownloadStudy" class="cssButton">Update</button></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>