kivitendo/templates/webpages/generic/exception.html @ 2e86dbf1
e0d4c92b | Hans P. Schlaepfer | [% USE LxERP %]
|
||
[% USE HTML %]
|
||||
f1adac26 | Moritz Bunkus | |||
f28c431a | Hans P. Schlaepfer | <div class="message message_error">[% LxERP.t8('Error!') %]</div>
|
||
f1adac26 | Moritz Bunkus | |||
f28c431a | Hans P. Schlaepfer | <div class="wrapper">
|
||
f1adac26 | Moritz Bunkus | |||
f28c431a | Hans P. Schlaepfer | <p>[% LxERP.t8('An exception occurred during execution.') %]</p>
|
||
<table class="tbl-horizontal">
|
||||
<tr>
|
||||
<td>[% LxERP.t8('Type') %]:</td>
|
||||
<td>[% HTML.escape(error.type) %]</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>[% LxERP.t8('Information') %]:</td>
|
||||
<td><code>[% HTML.escape(error.info) %]</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><!-- /.wrapper -->
|