enhanced favorites

This commit is contained in:
Jörg Henke
2025-11-24 11:25:09 +01:00
parent d95b3a1600
commit a172ec0d70
9 changed files with 63 additions and 33 deletions

View File

@@ -101,7 +101,12 @@
<ul class="dropdown-menu">
<li th:each="f : ${favorites}">
<a class="dropdown-item" th:href="@{/done/usefav/{id}(id=${f.fkFavorite})}">
<span th:text="${f.project} + ' ' + ${f.module} + ' ' + ${f.job}"></span>
<span class="row" style="min-width: 512px">
<span class="col-1" th:text="${f.load}"></span>
<span class="col-2" th:text="${f.project}"></span>
<span class="col-3" th:text="${f.module}"></span>
<span class="col-6" th:text="${f.job}"></span>
</span>
</a>
</li>
</ul>