Update the cherrypy branch to use authz.afs.cells instead of just
[invirt/packages/invirt-web.git] / code / templates / invalid.mako
1 <%page expression_filter="h"/>
2 <%inherit file="skeleton.mako" />
3
4 <%def name="title()">
5 Invalid Input
6 </%def>
7
8 <p>Your input was bad:</p>
9 <table>
10 <tr><td>Field</td><td>value</td><td>reason</td></tr>
11 <tr><td>${err_field}</td><td>${err_value}</td><td>${errorMessage}</td></tr>
12 %if stderr:
13 <p>Printed to standard error:</p>
14 <pre>${stderr}</pre>
15 %endif
16 </table>