diff options
| author | Paul-Christian Volkmer | 2024-03-25 17:09:27 +0100 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2024-03-25 17:09:27 +0100 |
| commit | 43af1aa1034706f23af0a893f491f3307708c6aa (patch) | |
| tree | de276cabd2f4c6ae9fba6f6fe6a759ce7a1ce78d /src/main/resources/templates/configs/outputConnectionAvailable.html | |
| parent | 056a0870657a0b4b9ff6d968efed54118fb8a569 (diff) | |
feat: add timestamp to connection check display
Diffstat (limited to 'src/main/resources/templates/configs/outputConnectionAvailable.html')
| -rw-r--r-- | src/main/resources/templates/configs/outputConnectionAvailable.html | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/main/resources/templates/configs/outputConnectionAvailable.html b/src/main/resources/templates/configs/outputConnectionAvailable.html index 2b18b75..63d77db 100644 --- a/src/main/resources/templates/configs/outputConnectionAvailable.html +++ b/src/main/resources/templates/configs/outputConnectionAvailable.html @@ -1,12 +1,15 @@ -<h2><span th:if="${outputConnectionAvailable}">✅</span><span th:if="${not(outputConnectionAvailable)}">⚡</span> MTB-File Verbindung</h2> +<h2><span th:if="${outputConnectionAvailable.available}">✅</span><span th:if="${not(outputConnectionAvailable.available)}">⚡</span> MTB-File Verbindung</h2> <div> - Verbindung über <code>[[ ${mtbFileSender} ]]</code>. Die Verbindung ist aktuell - <strong th:if="${outputConnectionAvailable}" style="color: green">verfügbar.</strong> - <strong th:if="${not(outputConnectionAvailable)}" style="color: red">nicht verfügbar.</strong> + Stand: <time style="font-weight: bold" th:datetime="${#temporals.formatISO(outputConnectionAvailable.timestamp)}" th:text="${#temporals.formatISO(outputConnectionAvailable.timestamp)}"></time> +</div> +<div> + Verbindung über <code>[[ ${mtbFileSender} ]]</code>. Die Verbindung ist aktuell. + <strong th:if="${outputConnectionAvailable.available}" style="color: green">verfügbar.</strong> + <strong th:if="${not(outputConnectionAvailable.available)}" style="color: red">nicht verfügbar.</strong> </div> <div class="connection-display border"> <img th:src="@{/server.png}" alt="ETL-Processor" /> - <span class="connection" th:classappend="${outputConnectionAvailable ? 'available' : ''}"></span> + <span class="connection" th:classappend="${outputConnectionAvailable.available ? 'available' : ''}"></span> <img th:if="${mtbFileSender.startsWith('Rest')}" th:src="@{/server.png}" alt="bwHC-Backend" /> <img th:if="${mtbFileSender.startsWith('Kafka')}" th:src="@{/kafka.png}" alt="Kafka-Broker" /> <span>ETL-Processor</span> |
