forked from lix-project/hydra
12 lines
268 B
Text
12 lines
268 B
Text
[% WRAPPER layout.tt title=(httpStatus ? httpStatus : "Error") %]
|
|
[% USE HTML %]
|
|
|
|
<p>I'm very sorry, but the following error(s) occurred:</p>
|
|
|
|
<ul>
|
|
[% FOREACH error IN errors %]
|
|
<li><div class="error-msg">[% HTML.escape(error) %]</div></li>
|
|
[% END %]
|
|
</ul>
|
|
|
|
[% END %]
|