Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 2008 → Rev 2009

/web/acc/manager/activity_report/models/Chart.report.js
0,0 → 1,49
//Création du graphe
var XXCONFXX = {
type: //line, bar, radar, pie, doughnut
'XXTYPEXX',
data: {
datasets: [{ //valeur de mes attributs de graph
data: [XXDATAXX],
backgroundColor: [XXCOLORXX],//couleur des attributs '#F7464A','#46BFBD','#FDB45C','#949FB1','#4D5360','#33CC33','#6699ff','#996633','#9966ff','#ffff66'
}],
labels: [XXLABELSXX] //labels
},
options: {
title: { //titre du graph
display: true,
text: 'XXTITLEXX',
fontFamily: "Calibri",
fontSize : 20,
},
responsive: false,
animation: false,
animateRotate: false,
legend: { //display : 'pie' => true // 'autre' => false
display: XXLEGENDXX,
position: 'right',
},
//ne pas commenter pour afficher la valeur de l'axe : 'pie' => false // 'autre' => true
XXCOMMENT-BEGINXX
scales: {
yAxes: [{
scaleLabel: {
display:
true,
labelString:
'XXYLABELXX',
}
}]
},
scales: {
yAxes: [{
ticks: {
beginAtZero:true
}
}]
}
XXCOMMENT-ENDXX
}
};
 
/web/acc/manager/activity_report/models/tabinfo.html
0,0 → 1,70
 
<div class="container">
 
<h2>Configuration de l'ALCASAR</h2>
<table class="table table-striped">
<thead>
<tr>
<th>Organisme</th>
<th>Installation</th>
<th>Version</th>
<th>@IP publique</th>
<th>@IP privée</th>
<th>Passerelle</th>
<th>DNS1</th>
<th>DNS2</th>
</tr>
</thead>
<tbody>
<tr>
<td>XXORGXX</td>
<td>XXINSTALLXX</td>
<td>XXAVERSIONXX</td>
<td>XXIP_PUBLICXX</td>
<td>XXIP_PRIVEXX</td>
<td>XXGWXX</td>
<td>XXDNS1XX</td>
<td>XXDNS2XX</td>
</tr>
</tbody>
</table>
 
<h2>Configuration du Système</h2>
<table class="table table-striped">
<thead>
<tr>
<th>Hostname</th>
<th>Version</th>
<th>Last reboot</th>
<th>MAJ Antivirus</th>
<th>MAJ Blacklist</th>
</tr>
</thead>
<tbody>
<tr>
<td>XXHOSTXX</td>
<td>XXOS_VERSIONXX</td>
<td>XXREBOOTXX</td>
<td>XXMAJCLAMAVXX</td>
<td>XXMAJBLXX</td>
</tr>
</tbody>
</table>
 
 
<h2>Logiciel mis à jour (cette semaine)</h2>
<table class="table table-striped">
<thead>
<tr>
<th>NOM</th>
<th>DATE</th>
<th>VERSION</th>
</tr>
</thead>
<tbody>
XXRPMXX
</tbody>
</table>
 
</div>