diff options
| author | Paul-Christian Volkmer | 2023-08-01 08:53:43 +0200 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2023-08-01 08:53:43 +0200 |
| commit | 11ed3a629621ed8936e95540d5a58c6a1e3d4021 (patch) | |
| tree | be2b71fdaca6e64f5984ea153decfe45182537d2 /src | |
| parent | 9c9760c3ec31b6c7bfc9977d85d64e0ac6dfef35 (diff) | |
Show request type in addition to state and ID
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/resources/templates/index.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index f47d2b5..96f1cfe 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -15,6 +15,7 @@ <thead> <tr> <th>Status</th> + <th>Typ</th> <th>ID</th> <th>Datum</th> <th>Patienten-ID</th> @@ -27,6 +28,7 @@ <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 == '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> <td th:if="${request.report}"> <a th:href="@{/report/{id}(id=${request.uuid})}">[[ ${request.uuid} ]]</a> |
