diff options
| author | Paul-Christian Volkmer | 2024-03-25 17:24:33 +0100 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2024-03-25 17:24:33 +0100 |
| commit | 08540e3bd7e0d2ef1a13a07e8827c25c601120a3 (patch) | |
| tree | de96b8d6339fb11027c8e7a3ea5f53b3ba7ea88c /src/main/resources/templates/configs/outputConnectionAvailable.html | |
| parent | 43af1aa1034706f23af0a893f491f3307708c6aa (diff) | |
feat: add timestamp of last connection check change
Diffstat (limited to 'src/main/resources/templates/configs/outputConnectionAvailable.html')
| -rw-r--r-- | src/main/resources/templates/configs/outputConnectionAvailable.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/resources/templates/configs/outputConnectionAvailable.html b/src/main/resources/templates/configs/outputConnectionAvailable.html index 63d77db..e6e970b 100644 --- a/src/main/resources/templates/configs/outputConnectionAvailable.html +++ b/src/main/resources/templates/configs/outputConnectionAvailable.html @@ -1,9 +1,11 @@ <h2><span th:if="${outputConnectionAvailable.available}">✅</span><span th:if="${not(outputConnectionAvailable.available)}">⚡</span> MTB-File Verbindung</h2> <div> Stand: <time style="font-weight: bold" th:datetime="${#temporals.formatISO(outputConnectionAvailable.timestamp)}" th:text="${#temporals.formatISO(outputConnectionAvailable.timestamp)}"></time> + | + Letzte Änderung: <time style="font-weight: bold" th:datetime="${#temporals.formatISO(outputConnectionAvailable.lastChange)}" th:text="${#temporals.formatISO(outputConnectionAvailable.lastChange)}"></time> </div> <div> - Verbindung über <code>[[ ${mtbFileSender} ]]</code>. Die Verbindung ist aktuell. + 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> |
