Changelog for invirt-web 0.1.44
[invirt/packages/invirt-web.git] / code / templates / error.mako
1 <%page expression_filter="h"/>
2 <%inherit file="skeleton.mako" />
3
4 <%def name="title()">
5 ERROR!
6 </%def>
7
8 %if os.path.exists("/etc/invirt/motd.html"):
9 <div class="result">
10 <p class="error">${open('/etc/invirt/motd.html').read()|n}</p>
11 </div>
12 %endif
13
14 <p>Uh-oh!  We experienced an error.  Sorry about that.  We've gotten
15 mail about it.</p>
16
17 <p>Feel free to poke us at <tt>${config.contact}</tt> if this bug is
18 consistently biting you and we don't seem to be fixing it.</p>
19
20 <p>In case you're curious, the gory details are below.</p>
21
22 <pre>
23 ${details}
24 </pre>