Lines 1-3
Link Here
|
|
|
1 |
[% SET footerjs = 1 %] |
1 |
[% INCLUDE 'doc-head-open.inc' %] |
2 |
[% INCLUDE 'doc-head-open.inc' %] |
2 |
<title>Koha › Error [% errno | html %]</title> |
3 |
<title>Koha › Error [% errno | html %]</title> |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
4 |
[% INCLUDE 'doc-head-close.inc' %] |
Lines 22-27
Link Here
|
22 |
<li>You tried to access a page that needs authentication</li> |
23 |
<li>You tried to access a page that needs authentication</li> |
23 |
<li>An internal link in the client is broken and the page does not exist</li> |
24 |
<li>An internal link in the client is broken and the page does not exist</li> |
24 |
</ul> |
25 |
</ul> |
|
|
26 |
[% IF stacktrace %] |
27 |
<h3>Detail of the error <span id="show_error"><a href="#">[show]</a></span><span id="hide_error" style="display: none;"><a href="#">[hide]</a></span></h3> |
28 |
<div id="stacktrace" style="display: none;"><pre>[% stacktrace %]</pre></div> |
29 |
[% END %] |
25 |
<h3>What's next?</h3> |
30 |
<h3>What's next?</h3> |
26 |
<ul style="margin-bottom: 1em; padding-bottom: 1em; border-bottom: 1px solid #CCC;"> |
31 |
<ul style="margin-bottom: 1em; padding-bottom: 1em; border-bottom: 1px solid #CCC;"> |
27 |
<li>Use top menu bar to navigate to another part of Koha.</li> |
32 |
<li>Use top menu bar to navigate to another part of Koha.</li> |
Lines 31-34
Link Here
|
31 |
</div> <!-- /.col-md-8 --> |
36 |
</div> <!-- /.col-md-8 --> |
32 |
</div> <!-- /.row --> |
37 |
</div> <!-- /.row --> |
33 |
|
38 |
|
|
|
39 |
</div> <!-- /.container-fluid --> |
40 |
|
41 |
[% MACRO jsinclude BLOCK %] |
42 |
<script> |
43 |
$(document).ready(function(){ |
44 |
$("#show_error a, #hide_error a").on("click", function(e){ |
45 |
e.preventDefault(); |
46 |
$("#show_error").toggle(); |
47 |
$("#hide_error").toggle(); |
48 |
$("#stacktrace").toggle(); |
49 |
}); |
50 |
}); |
51 |
</script> |
52 |
[% END %] |
34 |
[% INCLUDE 'intranet-bottom.inc' %] |
53 |
[% INCLUDE 'intranet-bottom.inc' %] |
35 |
- |
|
|