61 lines
2.1 KiB
HTML
61 lines
2.1 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: 900px;">
|
|
<br/>
|
|
<div class="center">Nombre de membres : <span id="organizationCount">n/a</span></div>
|
|
<div class="center">Nombre de services : <span id="serviceCount">n/a</span></div>
|
|
<table id="organizations" class="table_classic left">
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 200px;">Membre</th>
|
|
<th style="width: 250px;">URL</th>
|
|
<th style="width: 10px;">Services</th>
|
|
<th style="width: 10px;">Utilisateurs mensuels</th>
|
|
<th style="width: 10px;">Visites mensuelles</th>
|
|
<th style="width: 10px;">Date</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr id="organizationListLine">
|
|
<td id="organizationListLineName" style="padding-top: 0; padding-bottom: 0;">
|
|
<a href="#" id="organizationListLineNameLink">
|
|
<img id="organizationListLineLogo" src="" style="width: 26px; height: 26px; padding-top:0; padding-bottom: 0; vertical-align: middle;"/>
|
|
 <span id="organizationListLineNameValue">n/a</span>
|
|
</a>
|
|
</td>
|
|
<td id="organizationListLineUrl"><a href="#" id="organizationListLineUrlLink">n/a</a></td>
|
|
<td id="organizationListLineServiceCount" class="td_number">n/a</td>
|
|
<td id="organizationListLineUserCount" class="td_number">n/a</td>
|
|
<td id="organizationListLineVisitCount" class="td_number">n/a</td>
|
|
<td id="organizationListLineDate" class="center">n/a</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<script type="text/javascript">
|
|
$(document).ready(function()
|
|
{
|
|
$.fn.dataTable.moment( 'DD/MM/YYYY' );
|
|
|
|
$('#organizations').DataTable(
|
|
{
|
|
paging: false,
|
|
ordering: true,
|
|
"order": [[ 2, "desc" ]],
|
|
language: dataTableFrench
|
|
});
|
|
} );
|
|
</script>
|
|
</body>
|
|
</html>
|