diff options
author | Thomas <> | 2022-08-10 15:48:43 +0200 |
---|---|---|
committer | Thomas <> | 2022-08-10 15:48:43 +0200 |
commit | 3e38e52ea3a4d5c0931d451f05de9160a6eeb1ac (patch) | |
tree | 84edeae1d79319bdee7083078c5be660527f29dc /basicConfig/templates | |
parent | 4a736ff50d9af14d810cde11dcae4c71a131a08a (diff) | |
download | National_eIDAS_Gateway-3e38e52ea3a4d5c0931d451f05de9160a6eeb1ac.tar.gz National_eIDAS_Gateway-3e38e52ea3a4d5c0931d451f05de9160a6eeb1ac.tar.bz2 National_eIDAS_Gateway-3e38e52ea3a4d5c0931d451f05de9160a6eeb1ac.zip |
feat(ux): show technical transactionId on errorPage, if available
Diffstat (limited to 'basicConfig/templates')
-rw-r--r-- | basicConfig/templates/error_message.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/basicConfig/templates/error_message.html b/basicConfig/templates/error_message.html index 9ecd9f7e..9bb963e3 100644 --- a/basicConfig/templates/error_message.html +++ b/basicConfig/templates/error_message.html @@ -42,6 +42,11 @@ <p><b th:text="#{gui.errorpage.msg.errorcode}">Code:</b> <span th:text="${extErrorCode}"></span></p>
<p><b th:text="#{gui.errorpage.msg.errormsg}">Msg:</b> <span th:text="${#messages.msgWithParams('__${errorCode}__', '__${errorParams}__')}"></span></p>
+
+ <p th:if="${T(at.gv.egiz.eaaf.core.impl.utils.TransactionIdUtils).getTransactionId() != null}">
+ <b th:text="#{gui.errorpage.msg.transactionId}"> TransactionsId:</b> <span th:text="${T(at.gv.egiz.eaaf.core.impl.utils.TransactionIdUtils).getTransactionId()}"></span>
+ </p>
+
</div>
</div>
|