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

97 lines
3.4 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>
2021-01-15 04:58:55 +01:00
<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">
2021-05-20 00:14:16 +02:00
<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>
2021-01-15 04:58:55 +01:00
</td>
</tr>
</table>
</div>
2020-09-20 13:13:04 +02:00
</div>
2021-01-15 04:58:55 +01:00
2020-10-28 18:08:43 +01:00
<table id="propertyFileListTable" class="table_classic 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;">Erreurs</th>
2021-01-25 04:51:07 +01:00
<th style="width: 50px;">Attendues</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="fileListLineErrorCount" class="td_number"><a id="fileListLineErrorCountLink" href="#">n/a</a></td>
2021-01-25 04:51:07 +01:00
<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>
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">
2021-06-06 04:29:08 +02:00
$.fn.dataTable.moment( 'DD/MM/YYYY' );
2020-10-22 01:14:53 +02:00
$('#propertyFileListTable').DataTable(
{
paging: false,
ordering: true,
"order": [[ 0, "asc" ]],
language: dataTableFrench
});
</script>
2020-09-20 13:13:04 +02:00
</body>
</html>