diff options
| author | Paul-Christian Volkmer | 2024-07-15 11:44:19 +0200 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2024-07-15 11:44:19 +0200 |
| commit | 370ea87095bf6859b3d9623ab0f8252e10c1a9ee (patch) | |
| tree | 7bb3be941a93b5f8ed312ee9d5910f9d7689cf1a /src/main/resources/templates/index.html | |
| parent | c8f6e6efc812cc12d17c2af1cc24a9318180a8fe (diff) | |
refactor: rename db column name to reflect content
Diffstat (limited to 'src/main/resources/templates/index.html')
| -rw-r--r-- | src/main/resources/templates/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index 520efb6..568ba30 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -62,10 +62,10 @@ </td> <td><time th:datetime="${request.processedAt}">[[ ${request.processedAt} ]]</time></td> <td class="patient-id" th:if="${patientId != null}" sec:authorize="hasRole('USER') or hasRole('ADMIN')"> - [[ ${request.patientId} ]] + [[ ${request.patientPseudonym} ]] </td> <td class="patient-id" th:if="${patientId == null}" sec:authorize="hasRole('USER') or hasRole('ADMIN')"> - <a th:href="@{/patient/{pid}(pid=${request.patientId})}">[[ ${request.patientId} ]]</a> + <a th:href="@{/patient/{pid}(pid=${request.patientPseudonym})}">[[ ${request.patientPseudonym} ]]</a> </td> <td class="patient-id" sec:authorize="not (hasRole('USER') or hasRole('ADMIN'))">***</td> </tr> |
