|
56 | 56 | draggable="true" ondragstart="dragTask(event)" |
57 | 57 | ondrop="dropTask2Task(event)" ondragover="allowDropOfTask(event)"> |
58 | 58 | <td th:id="'task_' + ${task.id} + '_col_info_icons'" class="task_col task_col_info_icons"> |
59 | | - <a th:href="@{/task/{id}/complete(id=${task.id})}" |
| 59 | + <a th:href="@{/taskstate/task/{id}/complete(id=${task.id})}" |
60 | 60 | th:if="${task.taskState.name() ne 'COMPLETED' and task.taskState.name() ne 'TRASHED'}" |
61 | 61 | class="task_col_content task_col_content_finish twtooltip" data-placement="bottom" |
62 | 62 | th:alt-title="#{task.col.twtooltip.infoicons.finish.task}"> |
63 | 63 | <i class="far fa-square"></i> |
64 | 64 | </a> |
65 | | - <a th:href="@{/task/{id}/incomplete(id=${task.id})}" |
| 65 | + <a th:href="@{/taskstate/task/{id}/incomplete(id=${task.id})}" |
66 | 66 | th:if="${task.taskState.name() eq 'COMPLETED'}" |
67 | 67 | class="task_col_content task_col_content_unfinish twtooltip" data-placement="bottom" |
68 | 68 | th:alt-title="#{task.col.twtooltip.infoicons.unfinish.task}"> |
|
72 | 72 | th:if="${task.taskState.name() eq 'TRASHED'}" |
73 | 73 | th:alt-title="#{task.col.twtooltip.infoicons.trash}" |
74 | 74 | draggable="true" ondragstart="dragTask(event)" data-placement="bottom"></i> |
75 | | - <a th:if="${task.focus}" th:href="@{/task/{id}/unsetfocus(id=${task.id})}" |
| 75 | + <a th:if="${task.focus}" th:href="@{/taskstate/task/{id}/unsetfocus(id=${task.id})}" |
76 | 76 | class="task_col_content task_col_content_unsetfocus twtooltip" data-placement="bottom" |
77 | 77 | th:alt-title="#{task.col.twtooltip.infoicons.unsetfocus}" |
78 | 78 | th:id="'task_' + ${task.id} + '_col_unsetfocus'" draggable="true" ondragstart="dragTask(event)"> |
79 | 79 | <i class="fas fa-star"></i> |
80 | 80 | </a> |
81 | | - <a th:if="${not task.focus}" th:href="@{/task/{id}/setfocus(id=${task.id})}" |
| 81 | + <a th:if="${not task.focus}" th:href="@{/taskstate/task/{id}/setfocus(id=${task.id})}" |
82 | 82 | class="task_col_content task_col_content_setfocus twtooltip" |
83 | 83 | th:alt-title="#{task.col.twtooltip.infoicons.setfocus}" |
84 | 84 | th:id="'task_' + ${task.id} + '_col_setfocus'" draggable="true" ondragstart="dragTask(event)"> |
|
0 commit comments