1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
# --
# Copyright (C) 2001-2019 OTRS AG, https://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
# --
<div class="MainBox ARIARoleMain SpacingTopLarge ErrorScreen">
<div class="W50pc CenterBox SpacingBottomLarge">
<div class="WidgetSimple">
<div class="Header">
<h2>[% Translate("An Error Occurred") | html %]</h2>
</div>
<div class="Content">
<p>[% Translate(Data.Message) | truncate(200) | html %]</p>
<p class="SpacingTop">
[% Translate(Data.Comment) | html %]
</p>
[% IF Data.ShowOTRSBusinessHint %]
<div class="MessageBox Info">
<p class="SpacingTop">
[% Translate("Really a bug? 5 out of 10 bug reports result from a wrong or incomplete installation of OTRS.") | html %]
[% Translate("With %s, our experts take care of correct installation and cover your back with support and periodic security updates.") | html | ReplacePlaceholders('<b>OTRS Business Solution™</b>') %]
<br /><br />
<a class="Button" href="https://www.otrs.com/contact/" target="_blank">
[% Translate("Contact our service team now.") | html %]
</a>
</p>
</div>
[% END %]
<form action="https://bugs.otrs.org/enter_bug.cgi" target="_blank">
<input type="hidden" name="product" value="OTRS Helpdesk" />
<textarea class="Hidden" name="comment" rows="1" cols="1">
Message:
[% Data.Message | html %]
Comment:
[% Data.Comment | html %]
Traceback:
[% Data.BackendTraceback | html %]
</textarea>
<input type="hidden" name="bug_file_loc" value="[% Env("SERVER_NAME") | html %][% Env("REQUEST_URI") | html %]"/>
<p class="SpacingTop">
<button type="submit" class="Primary CallForAction" value="[% Translate("Send a bugreport") | html %]"><span>[% Translate("Send a bugreport") | html %]</span></button>
[% Translate("or") | html %]
<a href="#" class="CallForAction ReturnToPreviousPage"><span>[% Translate("go back to the previous page") | html %]</span></a>
</p>
</form>
<div id="Traceback" class="SpacingTop Notice Hidden">
<h4>[% Translate("Error Details") | html %]:</h4>
</div>
</div>
</div>
[% RenderBlockStart("ShowBackendTraceback") %]
<div class="WidgetSimple Collapsed SpacingTop">
<div class="Header ErrorMessage">
<div class="WidgetAction Toggle">
<a href="#" title="[% Translate("Expand") | html %]"><i class="fa fa-caret-right"></i><i class="fa fa-caret-down"></i></a>
</div>
<h2>[% Translate("Error Details") | html %]</h2>
</div>
<div class="Content">
<code><pre>Backend [% Data.BackendTraceback | html %]</pre></code>
</div>
</div>
[% RenderBlockEnd("ShowBackendTraceback") %]
</div>
</div>
|