summaryrefslogtreecommitdiff
path: root/src/main/resources/templates/transformations.html
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2024-01-02 06:48:11 +0100
committerPaul-Christian Volkmer2024-01-02 06:51:01 +0100
commite5d80f89b031c69695c9c79deb3fe6b5bee1d719 (patch)
treefd1138be1648ec45f1c04db1b5d39625c3606997 /src/main/resources/templates/transformations.html
parent5d0e815037026b5e9d2b4dc912db0683ea428341 (diff)
feat #15: add connection checks to bwHC backend
Diffstat (limited to 'src/main/resources/templates/transformations.html')
-rw-r--r--src/main/resources/templates/transformations.html47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/main/resources/templates/transformations.html b/src/main/resources/templates/transformations.html
deleted file mode 100644
index b8e2f37..0000000
--- a/src/main/resources/templates/transformations.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<!DOCTYPE html>
-<html lang="de" xmlns:th="http://www.thymeleaf.org">
-<head>
- <meta charset="UTF-8">
- <title>ETL-Prozessor</title>
- <link rel="stylesheet" th:href="@{/style.css}" />
-</head>
-<body>
- <div th:replace="~{fragments.html :: nav}"></div>
- <main>
- <h1>Transformationen</h1>
-
- <h2>Syntax</h2>
- Hier einige Beispiele zum Syntax des JSON-Path
- <ul>
- <li style="padding: 0.6rem 0;"><span class="bg-path">diagnoses[*].icdO3T.version</span>: Ersetze die ICD-O3T-Version in allen Diagnosen, z.B. zur Version der deutschen Übersetzung</li>
- <li style="padding: 0.6rem 0;"><span class="bg-path">patient.gender</span>: Ersetze das Geschlecht des Patienten, z.B. in das von bwHC verlangte Format</li>
- </ul>
-
- <h2>Konfigurierte Transformationen</h2>
- <p>
- Hier sehen Sie eine Übersicht der konfigurierten Transformationen.
- </p>
-
- <table>
- <thead>
- <tr>
- <th>JSON-Path</th>
- <th>Transformation von &rArr; nach</th>
- </tr>
- </thead>
- <tbody>
- <tr th:each="transformation : ${transformations}">
- <td>
- <span class="bg-path" title="Ersetze Wert(e) an dieser Stelle im MTB-File">[[ ${transformation.path} ]]</span>
- </td>
- <td>
- <span class="bg-from" title="Ersetze immer dann, wenn dieser Wert enthalten ist">[[ ${transformation.existingValue} ]]</span>
- <strong>&rArr;</strong>
- <span class="bg-to" title="Ersetze durch diesen Wert">[[ ${transformation.newValue} ]]</span>
- </td>
- </tr>
- </tbody>
- </table>
- </main>
-</body>
-</html> \ No newline at end of file