kivitendo/templates/webpages/generic/exception.html @ bc1bae42
ed4a9af1 | Moritz Bunkus | [%- USE LxERP %][% USE HTML %]<body>
|
|
<h1 class="message_error">[%- LxERP.t8('Error!') %]</h1>
|
|||
<p>
|
|||
[%- LxERP.t8('An exception occurred during execution.') %]
|
|||
</p>
|
|||
<div>
|
|||
<table>
|
|||
<tr>
|
|||
<td valign="top">[%- LxERP.t8('Type') %]:</td>
|
|||
<td valign="top">[%- HTML.escape(error.type) %]</td>
|
|||
</tr>
|
|||
<tr>
|
|||
<td valign="top">[%- LxERP.t8('Information') %]:</td>
|
|||
<td valign="top"><pre>[%- HTML.escape(error.info) %]</pre></td>
|
|||
</tr>
|
|||
</table>
|
|||
</div>
|
|||
</body>
|
|||
</html>
|