added percent usage

This commit is contained in:
Jörg Henke
2022-07-05 22:00:41 +02:00
parent a0e1aaa990
commit d3a2b11f86
6 changed files with 92 additions and 84 deletions

View File

@ -78,13 +78,13 @@
<thead>
<tr>
<th>Name</th>
<th>Benutzt</th>
<th>Benutzt in %</th>
</tr>
</thead>
<tbody>
<tr th:each="project : ${projectList}">
<td><span th:text="${project.name}"></span></td>
<td>TODO</td>
<td><span th:text="${project.percentUsage}"></span></td>
</tr>
</tbody>
</table>
@ -94,13 +94,13 @@
<thead>
<tr>
<th>Name</th>
<th>Benutzt</th>
<th>Benutzt in %</th>
</tr>
</thead>
<tbody>
<tr th:each="module : ${moduleList}">
<td><span th:text="${module.name}"></span></td>
<td>TODO</td>
<td><span th:text="${module.percentUsage}"></span></td>
</tr>
</tbody>
</table>
@ -110,13 +110,13 @@
<thead>
<tr>
<th>Name</th>
<th>Benutzt</th>
<th>Benutzt in %</th>
</tr>
</thead>
<tbody>
<tr th:each="job : ${jobList}">
<td><span th:text="${job.name}"></span></td>
<td>TODO</td>
<td><span th:text="${job.percentUsage}"></span></td>
</tr>
</tbody>
</table>
@ -127,14 +127,14 @@
<tr>
<th>Name</th>
<th>Symbol</th>
<th>Benutzt</th>
<th>Benutzt in %</th>
</tr>
</thead>
<tbody>
<tr th:each="billing : ${billingList}">
<td><span th:text="${billing.name}"></span></td>
<td><span th:text="${billing.shortcut}" th:class="'billing ' + ${billing.csskey}"></span></td>
<td>TODO</td>
<td><span th:text="${billing.percentUsage}"></span></td>
</tr>
</tbody>
</table>