diff options
| author | Paul-Christian Volkmer | 2025-09-03 21:30:36 +0200 |
|---|---|---|
| committer | GitHub | 2025-09-03 21:30:36 +0200 |
| commit | 96f22a67447506c14304d33b8c16bfba4c3abed2 (patch) | |
| tree | 61bef98b8a57ff9b6c1de713c1b92fb92a423e3f /src/main/resources/templates | |
| parent | c38c0c61971eb31b660a2050ae37656366a8c18d (diff) | |
feat: mark older request with unknown state (#150)
Diffstat (limited to 'src/main/resources/templates')
| -rw-r--r-- | src/main/resources/templates/index.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index 7ca0b67..4db6518 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -52,7 +52,8 @@ <td th:if="${request.status.value.contains('success')}" class="bg-green"><small>[[ ${request.status} ]]</small></td> <td th:if="${request.status.value.contains('warning')}" class="bg-yellow"><small>[[ ${request.status} ]]</small></td> <td th:if="${request.status.value.contains('error')}" class="bg-red"><small>[[ ${request.status} ]]</small></td> - <td th:if="${request.status.value == 'unknown'}" class="bg-gray"><small>[[ ${request.status} ]]</small></td> + <td th:if="${request.status.value == 'unknown' and not request.isPendingUnknown()}" class="bg-gray"><small>[[ ${request.status} ]]</small></td> + <td th:if="${request.status.value == 'unknown' and request.isPendingUnknown()}" class="bg-yellow"><small>⏰ [[ ${request.status} ]] ⏰</small></td> <td th:if="${request.status.value == 'duplication'}" class="bg-gray"><small>[[ ${request.status} ]]</small></td> <td th:style="${request.type.value == 'delete'} ? 'color: red;'"><small>[[ ${request.type} ]]</small></td> <td th:if="not ${request.report}">[[ ${request.uuid} ]]</td> @@ -100,4 +101,4 @@ }); </script> </body> -</html>
\ No newline at end of file +</html> |
