|
|
|
@ -33,21 +33,21 @@ |
|
|
|
|
<!--/*@thymesVar id="caches" type="java.util.List<org.openrs2.archive.cache.CacheExporter.Cache>"*/--> |
|
|
|
|
<tr th:each="cache : ${caches}"> |
|
|
|
|
<td th:text="${cache.game}">runescape</td> |
|
|
|
|
<td th:text="${cache.build}">550</td> |
|
|
|
|
<td th:text="${cache.build}" class="text-right">550</td> |
|
|
|
|
<td th:text="${#temporals.formatISO(cache.timestamp)}"></td> |
|
|
|
|
<td th:text="${cache.name}"></td> |
|
|
|
|
<td |
|
|
|
|
th:class="${cache.archiveStats}? (${cache.archiveStats.allIndexesValid}? 'table-success' : 'table-danger')" |
|
|
|
|
th:class="${cache.archiveStats}? (${cache.archiveStats.allIndexesValid}? 'table-success' : 'table-danger') + ' text-right'" |
|
|
|
|
th:text="${cache.archiveStats}? ${cache.archiveStats.validIndexes} + ' / ' + ${cache.archiveStats.indexes} + ' (' + ${#numbers.formatPercent(cache.archiveStats.validIndexesFraction, 1, 2)} + ')' : 'Calculating...'" |
|
|
|
|
>Calculating... |
|
|
|
|
</td> |
|
|
|
|
<td |
|
|
|
|
th:class="${cache.groupStats}? (${cache.groupStats.allGroupsValid}? 'table-success' : 'table-warning')" |
|
|
|
|
th:class="${cache.groupStats}? (${cache.groupStats.allGroupsValid}? 'table-success' : 'table-warning') + ' text-right'" |
|
|
|
|
th:text="${cache.groupStats}? ${#numbers.formatInteger(cache.groupStats.validGroups, 1, 'COMMA')} + ' / ' + ${#numbers.formatInteger(cache.groupStats.groups, 1, 'COMMA')} + ' (' + ${#numbers.formatPercent(cache.groupStats.validGroupsFraction, 1, 2)} + ')' : 'Calculating...'" |
|
|
|
|
>Calculating... |
|
|
|
|
</td> |
|
|
|
|
<td |
|
|
|
|
th:class="${cache.groupStats}? (${cache.groupStats.allKeysValid}? 'table-success' : 'table-warning')" |
|
|
|
|
th:class="${cache.groupStats}? (${cache.groupStats.allKeysValid}? 'table-success' : 'table-warning') + ' text-right'" |
|
|
|
|
th:text="${cache.groupStats}? ${#numbers.formatInteger(cache.groupStats.validKeys, 1, 'COMMA')} + ' / ' + ${#numbers.formatInteger(cache.groupStats.keys, 1, 'COMMA')} + ' (' + ${#numbers.formatPercent(cache.groupStats.validKeysFraction, 1, 2)} + ')' : 'Calculating...'" |
|
|
|
|
>Calculating... |
|
|
|
|
</td> |
|
|
|
|