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

96 lines
3.4 KiB
HTML

<?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="center_table" style="width: 1400px;">
<div class="center" >
<h2>Fichiers properties</h2>
<div>
<table style="width: 300px;" class="table_classic left">
<tr>
<td style="width: 150px;">Fichiers :</td>
<td id="fileCount" class="right">n/a</td>
</tr>
<tr>
<td>Lignes :</td>
<td id="lineCount" class="right">n/a</td>
</tr>
<tr>
<td>Propriétés :</td>
<td id="propertyCount" class="right">n/a</td>
</tr>
<tr>
<td>Propriétés vides :</td>
<td id="blankPropertyCount" class="right">n/a</td>
</tr>
<tr>
<td>Alertes :</td>
<td class="right">
<span id="errorCount" class="bg_error" style="padding: 0 5px;" title="Erreurs">n/a</span>
<span id="warningCount" class="bg_warning" style="padding: 0 5px;" title="Attendus">n/a</span>
<span id="voidCount" class="bg_void" style="padding: 0 5px;" title="Inconnus">n/a</span>
</td>
</tr>
</table>
</div>
</div>
<table id="propertyFileListTable" class="table_classic left">
<thead>
<tr>
<th style="width: 600px;">Nom local</th>
<th style="width: 300px;">Organisation</th>
<th style="width: 100px;">Lignes</th>
<th style="width: 100px;">Propriétés</th>
<th style="width: 100px;">Remplies</th>
<th style="width: 100px;">Vides</th>
<th style="width: 50px;">Erreurs</th>
<th style="width: 50px;">Attendues</th>
<th style="width: 50px;">Inconnues</th>
<th style="width: 100px;">Date</th>
</tr>
</thead>
<tbody>
<tr id="fileListLine">
<td id="fileListLineName" style="padding-top: 0; padding-bottom: 0;">
<a href="#" id="fileListLineNameLink">n/a</a>
</td>
<td id="fileListLineOwner" style="padding-top: 0; padding-bottom: 0;">
<a href="#" id="fileListLineOwnerLink">
<img id="fileListLineOwnerLogo" src="" style="width: 26px; height: 26px; padding-top:0; padding-bottom: 0; vertical-align: middle;"/>
<span id="fileListLineNameValue">n/a</span>
</a>
</td>
<td id="fileListLineLineCount" class="td_number">n/a</td>
<td id="fileListLineActiveCount" class="td_number">n/a</td>
<td id="fileListLineFilledPropertyCount" class="td_number">n/a</td>
<td id="fileListLineBlankPropertyCount" class="td_number">n/a</td>
<td id="fileListLineErrorCount" class="td_number"><a id="fileListLineErrorCountLink" href="#">n/a</a></td>
<td id="fileListLineWarningCount" class="td_number"><a id="fileListLineWarningCountLink" href="#">n/a</a></td>
<td id="fileListLineVoidCount" class="td_number"><a id="fileListLineVoidCountLink" href="#">n/a</a></td>
<td id="fileListLineDate" class="td_number">n/a</td>
</tr>
</tbody>
</table>
</div>
<script type="text/javascript">
$.fn.dataTable.moment( 'DD/MM/YYYY' );
$('#propertyFileListTable').DataTable(
{
paging: false,
ordering: true,
"order": [[ 0, "asc" ]],
language: dataTableFrench
});
</script>
</body>
</html>