Skip to content

Commit dd054f7

Browse files
committed
work
1 parent b5a6dbc commit dd054f7

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@
9595
<td th:id="'task_' + ${task.id} + '_col_due_date'" class="task_col task_col_due_date"
9696
th:if="${myTaskState eq 'SCHEDULED' or myTaskState eq 'TODAY' or myTaskState eq 'PROJECT'}">
9797
<span th:if="${#locale.language eq 'de'}"
98-
th:id="'task_' + ${task.id} + '_col_due_date'"
99-
draggable="true" ondragstart="dragTask(event)"
100-
th:alt-title="#{task.col.twtooltip.duedate}"
101-
class="task_col_content task_col_content_duedate twtooltip"
102-
th:text="${#calendars.format(task.dueDate,'dd.MM.yyyy')}">
98+
th:id="'task_' + ${task.id} + '_col_due_date'"
99+
draggable="true" ondragstart="dragTask(event)"
100+
th:alt-title="#{task.col.twtooltip.duedate}"
101+
class="task_col_content task_col_content_duedate twtooltip"
102+
th:text="${#calendars.format(task.dueDate,'dd.MM.yyyy')}">
103103
</span>
104104
<span th:if="${#locale.language eq 'en'}"
105105
th:id="'task_' + ${task.id} + '_col_due_date'"
@@ -111,7 +111,8 @@
111111
</td>
112112
<td th:id="'task_' + ${task.id} + '_col_taskstate'" class="task_col task_col_taskstate"
113113
th:if="${myTaskState eq 'FOCUS' or myTaskState eq 'ALL' or myTaskState eq 'PROJECT'}">
114-
<a th:href="@{{url}(url=${task.taskState.getUrlPath()})}" class="twtooltip"
114+
<a th:href="@{{url}(url=${task.taskState.getUrlPath()})}"
115+
class="btn btn-outline-secondary btn-sm twtooltip"
115116
th:alt-title="#{task.col.twtooltip.taskstate}">
116117
<i th:class="${task.taskState.getIcon()}"></i>
117118
<span th:utext="${#messages.msgOrNull(task.taskState.code)}">Inbox</span>

src/main/resources/templates/project/id/show.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<div id="tw-content-title">
1414
<h2>
1515
<i class="fas fa-project-diagram"></i>
16-
<span th:text="#{project.show.h1}"class="me-3">Project</span>
16+
<span th:text="#{project.show.h1}" class="me-3">Project</span>
1717
<span th:if="${thisProject.id gt 0}">
1818
<a class="btn btn-block btn-outline-dark" data-bs-toggle="collapse"
1919
href="#collapseDescription" role="button" aria-expanded="false" aria-controls="collapseExample">

0 commit comments

Comments
 (0)