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

68 lines
2.6 KiB
HTML
Raw Normal View History

2020-09-20 13:13:04 +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="center_table" style="width: 1400px;">
2020-10-02 01:36:34 +02:00
<div class="center" >
<h2>Fichiers properties</h2>
<div>Nombre de fichiers : <span id="fileCount">n/a</span></div>
2020-09-20 13:13:04 +02:00
</div>
2020-10-22 01:14:53 +02:00
<table id="propertyFileListTable" class="table_classic sortable left">
2020-10-02 01:36:34 +02:00
<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;">Attendues</th>
<th style="width: 50px;">Erreurs</th>
<th style="width: 50px;">Inconnues</th>
2020-10-02 01:36:34 +02:00
<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;"/>
2020-10-22 01:14:53 +02:00
<span id="fileListLineNameValue">n/a</span>
2020-10-02 01:36:34 +02:00
</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="fileListLineWarningCount" class="td_number"><a id="fileListLineWarningCountLink" href="#">n/a</a></td>
<td id="fileListLineErrorCount" class="td_number"><a id="fileListLineErrorCountLink" href="#">n/a</a></td>
<td id="fileListLineVoidCount" class="td_number"><a id="fileListLineVoidCountLink" href="#">n/a</a></td>
2020-10-02 01:36:34 +02:00
<td id="fileListLineDate" class="td_number">n/a</td>
</tr>
</tbody>
</table>
2020-09-21 03:41:46 +02:00
</div>
2020-10-22 01:14:53 +02:00
<script type="text/javascript">
$('#propertyFileListTable').DataTable(
{
paging: false,
ordering: true,
"order": [[ 0, "asc" ]],
language: dataTableFrench
});
</script>
2020-09-20 13:13:04 +02:00
</body>
</html>