Skip to content

Commit

Permalink
work
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaswoehlke committed Sep 5, 2022
1 parent 6245efd commit 885cf16
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/templates/layout/task.html
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
</label>
<div class="form-group input-group is-invalid">
<span class="input-group-text is-invalid" id="basic-addon7">
<i class="fa-solid fa-cloud"></i>
<i class="fa-solid fa-diagram-project"></i>
</span>
<select th:field="*{project.id}" class="form-control form-control-lg" aria-describedby="basic-addon7">
<option value="0"></option>
Expand Down
16 changes: 8 additions & 8 deletions src/main/resources/templates/layout/tasks.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
class="task_col_content task_col_content_duedate twtooltip"
th:text="${#calendars.format(task.dueDate,'dd.MM.yyyy')}">
</span>
<span th:if="${#locale.language eq 'en'}"
<span th:if="${#locale.language eq 'en'}"
th:id="'task_' + ${task.id} + '_col_due_date'"
draggable="true" ondragstart="dragTask(event)"
th:alt-title="#{task.col.twtooltip.duedate}"
Expand Down Expand Up @@ -147,12 +147,12 @@
</td>
<td th:id="'task_' + ${task.id} + '_col_context'" class="task_col task_col_context"
th:if="${myTaskState eq 'ALL'}">
<span th:if="${#locale.language eq 'de'}"
th:id="'task_' + ${task.id} + '_col_context_txt'"
draggable="true" ondragstart="dragTask(event)"
class="task_col_content task_col_content_context twtooltip"
th:alt-title="#{task.col.twtooltip.context}"
th:text="${task.context.nameDe}">task.context.nameDe</span>
<span th:if="${#locale.language eq 'de'}"
th:id="'task_' + ${task.id} + '_col_context_txt'"
draggable="true" ondragstart="dragTask(event)"
class="task_col_content task_col_content_context twtooltip"
th:alt-title="#{task.col.twtooltip.context}"
th:text="${task.context.nameDe}">task.context.nameDe</span>
<span th:if="${#locale.language ne 'de'}"
th:id="'task_' + ${task.id} + '_col_context_txt'"
draggable="true" ondragstart="dragTask(event)"
Expand Down Expand Up @@ -223,7 +223,7 @@ <h5 class="modal-title" id="taskModalScrollableTitle">
<b th:text="#{tasks.inbox.project}" class="me-2">Project</b>
<span th:if="${task.project ne null}">
<a th:href="@{/project/{id}(id=${task.project.id})}">
<i class="fas fa-folder-open"></i>
<i class="fa-solid fa-diagram-project"></i>
<span th:text="${task.project.name}">task.project.name</span></a>
</span>
<span th:if="${task.project eq null}">
Expand Down

0 comments on commit 885cf16

Please sign in to comment.