statoolinfosweb/src/fr/devinsy/statoolinfos/htmlize/propertyFileCheck.xhtml

75 lines
2.5 KiB
HTML
Raw Normal View History

2020-10-17 17:57:10 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>StatoolInfos</title>
<meta charset="UTF-8" />
<meta name="keywords" content="statoolinfos,devinsy,federation" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="statoolinfos.css" />
<script src="sorttable.js" />
<script src="Chart.bundle.min.js"></script>
</head>
<body>
<div class="row center_table" style="width: 1100px;">
<div class="center">
<h2 id="statsTitle">n/a</h2>
</div>
2020-10-29 19:41:53 +01:00
<div id="rawgroupedswitch" style="margin: 4px;">
2020-10-29 19:57:14 +01:00
<span style="display: inline-block; padding-top: 6px; vertical-align: text-top;"><a href="#part2">Réduit</a></span>
2020-10-29 19:41:53 +01:00
<label class="switch">
<input type="checkbox" onclick="javascript:viewFlip();" />
<span class="slider round"></span>
</label>
<span style="margin-left: 50px;">Statistiques : </span>
<span id="warningCount" class="bg_warning" style="padding: 0 10px;" title="Attendus">n/a</span>
2020-11-14 06:25:28 +01:00
<span id="alertCount" class="bg_error" style="padding: 0 10px;" title="Erreurs">n/a</span>
<span id="voidCount" class="bg_void" style="padding: 0 10px;" title="Inconnus">n/a</span>
2020-10-29 19:41:53 +01:00
</div>
<div id="fullBlock" style="width: 100%;">
2020-10-17 17:57:10 +02:00
<table class="table_simple">
<tbody>
<tr id="line">
<td id="lineIndex" style="width: 30px; text-align: right;">000</td>
<td id="lineContent" style="padding-left: 10px;">n/a</td>
<td id="lineComment" style="width: 200px; padding-left: 10px;">n/a</td>
</tr>
</tbody>
</table>
</div>
2020-10-29 19:41:53 +01:00
<div id="shrunkBlock" style="width: 100%; display: none;">
<table class="table_simple">
<tbody>
<tr id="shrunkLine">
<td id="shrunkLineIndex" style="width: 30px; text-align: right;">000</td>
<td id="shrunkLineContent" style="padding-left: 10px;">n/a</td>
<td id="shrunkLineComment" style="width: 200px; padding-left: 10px;">n/a</td>
</tr>
</tbody>
</table>
</div>
</div>
<script type="text/javascript">
var showView = 'FULL';
function viewFlip ()
{
if (showView == 'FULL')
{
document.getElementById ('fullBlock').style.display = 'none';
document.getElementById ('shrunkBlock').style.display = 'block';
showView = 'SHRUNK';
}
else
{
document.getElementById ('fullBlock').style.display = 'block';
document.getElementById ('shrunkBlock').style.display = 'none';
showView = 'FULL';
}
}
</script>
2020-10-17 17:57:10 +02:00
</body>
</html>