Exceptions während Template-Ausführung ausgeben lassen
[kivitendo-erp.git] / templates / webpages / generic / exception.html
1 [%- USE LxERP %][% USE HTML %]<body>
2
3  <h1 class="message_error">[%- LxERP.t8('Error!') %]</h1>
4
5  <p>
6   [%- LxERP.t8('An exception occurred during execution.') %]
7  </p>
8
9  <div>
10   <table>
11    <tr>
12     <td valign="top">[%- LxERP.t8('Type') %]:</td>
13     <td valign="top">[%- HTML.escape(error.type) %]</td>
14    </tr>
15
16    <tr>
17     <td valign="top">[%- LxERP.t8('Information') %]:</td>
18     <td valign="top"><pre>[%- HTML.escape(error.info) %]</pre></td>
19    </tr>
20   </table>
21  </div>
22
23 </body>
24 </html>