<%inherit file="../template.html" /> <%def name="title()">${_("Error %d") % c.error_code} <%block name="attention_getter"> ## disable the attention getter on error pages <%block name="main_content"> %if not c.hide_code:

${_("Error %d") % c.error_code}${' - ' + unicode(c.error_name) if c.error_name else ''}

%endif ${unicode(c.error_message)|n} %if c.trace_url: trace me %endif %if not c.hide_notify:

${_("If this error continues to occur, please %snotify the developers%s with a description of what you were trying to do.") % tuple(h.help_link('&&', 'imprint').split('&&'))|n} ${_("An automated email message describing the situation has been sent to our developers.")}

%endif