aboutsummaryrefslogtreecommitdiff
path: root/basicConfig
diff options
context:
space:
mode:
authorThomas <>2022-08-11 14:11:05 +0200
committerThomas <>2022-08-11 14:11:05 +0200
commit1f6c93f94b628e9e702f86fcaea6d34c858687fc (patch)
treef43f894f6341a35a66a0a6d5261f26302773a22d /basicConfig
parent3e38e52ea3a4d5c0931d451f05de9160a6eeb1ac (diff)
downloadNational_eIDAS_Gateway-1f6c93f94b628e9e702f86fcaea6d34c858687fc.tar.gz
National_eIDAS_Gateway-1f6c93f94b628e9e702f86fcaea6d34c858687fc.tar.bz2
National_eIDAS_Gateway-1f6c93f94b628e9e702f86fcaea6d34c858687fc.zip
chore(gui): show transactionId between errorCode and errorMsg
Diffstat (limited to 'basicConfig')
-rw-r--r--basicConfig/templates/error_message.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/basicConfig/templates/error_message.html b/basicConfig/templates/error_message.html
index 9bb963e3..8a5a1cd1 100644
--- a/basicConfig/templates/error_message.html
+++ b/basicConfig/templates/error_message.html
@@ -3,10 +3,10 @@
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorator="fragments/base"
th:with="lang=${#locale.language}" th:lang="${lang}">
-
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<link rel="stylesheet" href="/static/common.css"/>
-
+
<title th:text="#{gui.errorpage.msg.title}">An error arise ... </title>
</head>
@@ -31,7 +31,7 @@
<div id="page1" class="case selected-case" role="main">
<div class="hell" role="application" >
<h2 class="OA_header" role="heading" th:text="#{gui.errorpage.msg.title}">Error Header</h2>
-
+
<div id="alert_area" class="hell" role="application" >
<p th:text="#{gui.errorpage.msg.information}">Error Information</p>
<br/>
@@ -41,17 +41,17 @@
<!-- grouped external errorCodes -->
<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>
+
+ <p><b th:text="#{gui.errorpage.msg.errormsg}">Msg:</b> <span th:text="${#messages.msgWithParams('__${errorCode}__', '__${errorParams}__')}"></span></p>
+
+ </div>
+ </div>
<div th:if="${stacktrace}">
- <p><b th:text="#{gui.errorpage.msg.stacktrace}">fullError</b> <span th:text="${stacktrace}"></span></p>
+ <p><b th:text="#{gui.errorpage.msg.stacktrace}">fullError</b> <span th:text="${stacktrace}"></span></p>
</div>
</div>