Skip to content

Commit f344d50

Browse files
committed
List of ALL Tasks
1 parent e36a5fb commit f344d50

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

src/main/resources/templates/layout/navbartop.html

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,9 @@
3838
</div>
3939
</li>
4040
<li class="nav-item">
41-
<a class="nav-link" th:href="@{/user/selfservice/profile}">
42-
<i class="fas fa-user"></i>
43-
<span th:text="#{layout.page.showUsers}">User</span>
44-
<span class="badge badge-pill badge-light"
45-
th:if="${numberOfNewIncomingMessages gt 0}"
46-
th:text="${numberOfNewIncomingMessages}">33</span>
41+
<a class="nav-link" th:href="@{/taskstate/all}">
42+
<i class="fa-solid fa-database"></i>
43+
<span th:text="#{layout.page.all}">ALL Tasks</span>
4744
</a>
4845
</li>
4946
<li class="nav-item">

src/main/resources/templates/layout/tasks.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,14 @@
8888
<div th:replace="this :: tw-tasks-modal(task=${task},myUrlPath=${myUrlPath})"></div>
8989
</td>
9090
<td th:id="'task_' + ${task.id} + '_col_energy_and_time'" class="task_col task_col_energy_and_time">
91-
<span class="badge bg-dark task_col_content task_col_content_taskenergy twtooltip"
91+
<span class="badge bg-secondary task_col_content task_col_content_taskenergy twtooltip"
9292
th:if="${task.taskEnergy.value ne 'NONE'}"
9393
th:id="'task_' + ${task.id} + '_col_energy_and_time_badge'"
9494
draggable="true" ondragstart="dragTask(event)"
9595
th:text="${#messages.msgOrNull(task.taskEnergy.code)}"
9696
th:alt-title="#{task.col.twtooltip.badge.taskEnergy}">
9797
</span>
98-
<span class="badge bg-dark task_col_content task_col_content_tasktime twtooltip"
98+
<span class="badge bg-secondary task_col_content task_col_content_tasktime twtooltip"
9999
th:if="${task.taskTime.value ne 'NONE'}"
100100
th:id="'task_' + ${task.id} + '_col_energy_and_time_badge'"
101101
draggable="true" ondragstart="dragTask(event)"

0 commit comments

Comments
 (0)