Fixed n/a sort and date sort.
This commit is contained in:
parent
b1434d284b
commit
cccd606ac7
4 changed files with 15 additions and 24 deletions
|
@ -128,26 +128,8 @@ public class FederationPage
|
|||
data.setEscapedAttribute("organizationListLine", index, "organizationListLineUrlLink", "href", organization.getWebsite());
|
||||
|
||||
data.setContent("organizationListLine", index, "organizationListLineServiceCount", organization.getServiceCount());
|
||||
|
||||
long count = organization.getPreviousMonthUserCount();
|
||||
if (count == 0)
|
||||
{
|
||||
data.setContent("organizationListLine", index, "organizationListLineUserCount", "n/a");
|
||||
}
|
||||
else
|
||||
{
|
||||
data.setContent("organizationListLine", index, "organizationListLineUserCount", count);
|
||||
}
|
||||
|
||||
count = organization.getPreviousMonthVisitCount();
|
||||
if (count == 0)
|
||||
{
|
||||
data.setContent("organizationListLine", index, "organizationListLineVisitCount", "n/a");
|
||||
}
|
||||
else
|
||||
{
|
||||
data.setContent("organizationListLine", index, "organizationListLineVisitCount", count);
|
||||
}
|
||||
data.setContent("organizationListLine", index, "organizationListLineUserCount", organization.getPreviousMonthUserCount());
|
||||
data.setContent("organizationListLine", index, "organizationListLineVisitCount", organization.getPreviousMonthVisitCount());
|
||||
|
||||
data.setContent("organizationListLine", index, "organizationListLineDate", organization.getCrawledDate().format(DateTimeFormatter.ofPattern("dd/MM/YYYY")));
|
||||
data.setAttribute("organizationListLine", index, "organizationListLineDate", "title", organization.getCrawledDate().format(DateTimeFormatter.ofPattern("HH:mm:ss")));
|
||||
|
|
|
@ -85,6 +85,10 @@ public class ServiceListView
|
|||
data.setEscapedContent("serviceListLine", index, "serviceListLineSoftwareLink", service.getSoftwareName());
|
||||
data.setAttribute("serviceListLine", index, "serviceListLineSoftwareLink", "href", "software-" + service.getSoftwareTechnicalName() + ".xhtml");
|
||||
|
||||
data.setContent("serviceListLine", index, "serviceListLineUserCount", service.getPreviousMonthUserCount());
|
||||
|
||||
data.setContent("serviceListLine", index, "serviceListLineVisitCount", service.getPreviousMonthVisitCount());
|
||||
|
||||
data.setEscapedContent("serviceListLine", index, "serviceListLineDate", service.getCrawledDate().format(DateTimeFormatter.ofPattern("dd/MM/YYYY")));
|
||||
data.setEscapedAttribute("serviceListLine", index, "serviceListLineDate", "title", service.getCrawledDate().format(DateTimeFormatter.ofPattern("HH:mm:ss")));
|
||||
|
||||
|
|
|
@ -50,7 +50,8 @@
|
|||
paging: false,
|
||||
ordering: true,
|
||||
"order": [[ 2, "desc" ]],
|
||||
language: dataTableFrench
|
||||
language: dataTableFrench,
|
||||
"columns": [null, null, null, null, null, { "sType": "date" } ]
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<script src="Chart.bundle.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="center_table" style="width: 1450px;">
|
||||
<div class="center_table" style="width: 1500px;">
|
||||
<br/>
|
||||
<div class="center">Nombre de services : <span id="serviceCount">n/a</span></div>
|
||||
|
||||
|
@ -53,6 +53,7 @@
|
|||
<th class="">URL</th>
|
||||
<th class="">Logiciel</th>
|
||||
<th class="" style="width: 100px;">Utilisateurs mensuels</th>
|
||||
<th class="" style="width: 10px;">Visites mensuelles</th>
|
||||
<th class="" style="width: 25px;">Statut</th>
|
||||
<th class="" style="width: 25px;" colspan="5">Inscription</th>
|
||||
<th class="" style="width: 25px;" colspan="5">Liens</th>
|
||||
|
@ -79,6 +80,7 @@
|
|||
<a href="#" id="serviceListLineSoftwareLink" title="">n/a</a>
|
||||
</td>
|
||||
<td id="serviceListLineUserCount" class="td_number">n/a</td>
|
||||
<td id="serviceListLineVisitCount" class="td_number">n/a</td>
|
||||
|
||||
<td id="" class="td_icon_alone">
|
||||
<img id="serviceStatusImg" src="status-void.png" title="n/a"/>
|
||||
|
@ -136,7 +138,9 @@
|
|||
paging: false,
|
||||
ordering: true,
|
||||
"order": [[ 2, "desc" ]],
|
||||
language: dataTableFrench
|
||||
language: dataTableFrench,
|
||||
"columns": [null, null, null, null, null, null, null, null, null, null,
|
||||
null, null, null, null, null, null, null, null, null, null, { "sType": "date" } ]
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
|
Loading…
Reference in a new issue