2021-05-17 13:24: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="center_table" style="width: 1100px;">
|
|
|
|
|
|
|
|
<div class="center">
|
|
|
|
<h2 id="title">Journal des téléchargements</h2>
|
|
|
|
<div>Nombre de téléchargements : <span id="totalCount">n/a</span></div>
|
|
|
|
<div>Nombre d'erreurs : <span id="errorCount">n/a</span></div>
|
|
|
|
<div>Date : <span id="date">n/a</span></div>
|
|
|
|
</div>
|
|
|
|
<br/>
|
2021-05-18 19:40:29 +02:00
|
|
|
<div class="center_table" style="width: 1000px;">
|
2021-05-17 13:24:10 +02:00
|
|
|
<table id="crawlLogs" class="table_classic left">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2021-05-18 19:40:29 +02:00
|
|
|
<th style="width: 200px;">Parent</th>
|
2021-05-17 13:24:10 +02:00
|
|
|
<th>URL</th>
|
2021-05-18 19:40:29 +02:00
|
|
|
<th style="width: 150px;">Statut</th>
|
2021-05-17 13:24:10 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr id="crawlLogLine">
|
2021-05-18 19:40:29 +02:00
|
|
|
<td id="crawlLogLineParentUrl"><a href="#" id="crawlLogLineParentUrlLink">n/a</a></td>
|
2021-05-17 13:24:10 +02:00
|
|
|
<td id="crawlLogLineUrl"><a href="#" id="crawlLogLineUrlLink">n/a</a></td>
|
|
|
|
<td id="crawlLogLineStatus" class="td_center center">n/a</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$('#crawlLogs').DataTable(
|
|
|
|
{
|
|
|
|
paging: false,
|
|
|
|
ordering: true,
|
|
|
|
"order": [[ 0, "asc" ]],
|
|
|
|
language: dataTableFrench,
|
|
|
|
column:
|
|
|
|
[ {},{},
|
|
|
|
{
|
|
|
|
"bSortable": false
|
|
|
|
},
|
|
|
|
]
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|