diff options
author | Thomas <> | 2022-08-24 10:18:15 +0200 |
---|---|---|
committer | Thomas <> | 2022-08-24 10:18:15 +0200 |
commit | 08dec8b7cbb2ceb0b61da616fa336cce9cd52fd0 (patch) | |
tree | ee5d22acf6b1d3b4d159910532036066bd7342e2 /basicConfig/ms-proxyservice/templates | |
parent | 53aa46c630e6298f63dc7f09ab26aa914b8e021f (diff) | |
download | National_eIDAS_Gateway-08dec8b7cbb2ceb0b61da616fa336cce9cd52fd0.tar.gz National_eIDAS_Gateway-08dec8b7cbb2ceb0b61da616fa336cce9cd52fd0.tar.bz2 National_eIDAS_Gateway-08dec8b7cbb2ceb0b61da616fa336cce9cd52fd0.zip |
chore(UX): show transactionId in errorpage
Diffstat (limited to 'basicConfig/ms-proxyservice/templates')
-rw-r--r-- | basicConfig/ms-proxyservice/templates/error_message.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/basicConfig/ms-proxyservice/templates/error_message.html b/basicConfig/ms-proxyservice/templates/error_message.html index eba1c5fd..6924e7b7 100644 --- a/basicConfig/ms-proxyservice/templates/error_message.html +++ b/basicConfig/ms-proxyservice/templates/error_message.html @@ -41,6 +41,10 @@ <!-- grouped external errorCodes -->
<p><b th:text="#{gui.errorpage.msg.errorcode}">Code:</b> <span th:text="${extErrorCode}"></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>
+
<p><b th:text="#{gui.errorpage.msg.errormsg}">Msg:</b> <span th:text="${#messages.msgWithParams('__${errorCode}__', '__${errorParams}__')}"></span></p>
</div>
</div>
|