Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision e848c705

Von Hans P. Schlaepfer vor etwa 4 Jahren hinzugefügt

  • ID e848c7057733f16b74904f48ff3c2e87f9ba7b53
  • Vorgänger afe91955
  • Nachfolger a6e462d5

Neues Design 2019 Standard-Code templates/webpages/generic/

Unterschiede anzeigen:

templates/webpages/generic/exception.html
1 1
[% USE LxERP %]
2 2
[% USE HTML %]
3 3

  
4
 <h1 class="message_error">[%- LxERP.t8('Error!') %]</h1>
4
<div class="message message_error">[% LxERP.t8('Error!') %]</div>
5 5

  
6
 <p>
7
  [%- LxERP.t8('An exception occurred during execution.') %]
8
 </p>
6
<div class="wrapper">
9 7

  
10
 <div>
11
  <table>
12
   <tr>
13
    <td valign="top">[%- LxERP.t8('Type') %]:</td>
14
    <td valign="top">[%- HTML.escape(error.type) %]</td>
15
   </tr>
8
<p>[% LxERP.t8('An exception occurred during execution.') %]</p>
9

  
10
<table class="tbl-horizontal">
11
  <tr>
12
    <td>[% LxERP.t8('Type') %]:</td>
13
    <td>[% HTML.escape(error.type) %]</td>
14
  </tr>
15
  <tr>
16
    <td>[% LxERP.t8('Information') %]:</td>
17
    <td><code>[% HTML.escape(error.info) %]</code></td>
18
  </tr>
19
</table>
20

  
21
</div><!-- /.wrapper -->
16 22

  
17
   <tr>
18
    <td valign="top">[%- LxERP.t8('Information') %]:</td>
19
    <td valign="top"><pre>[%- HTML.escape(error.info) %]</pre></td>
20
   </tr>
21
  </table>
22
 </div>

Auch abrufbar als: Unified diff