source: trunk/packages/invirt-web/code/templates/invalid.mako @ 2737

Last change on this file since 2737 was 2737, checked in by broder, 14 years ago

Merge cherrypy-rebased branch of invirt-web into trunk.

File size: 358 bytes
Line 
1<%page expression_filter="h"/>
2<%inherit file="skeleton.mako" />
3
4<%def name="title()">
5Invalid 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>
Note: See TracBrowser for help on using the repository browser.