{% extends "base.html" %} {% block title %}Error – {{ status_code }}{% end %} {% block content %} {% if 'exc_info' in globals() and handler.application.settings['debug'] and exc_info[2] is not None %} {% import traceback %}

ERROR: {{ status_code }} – {{ reason }}

Traceback (most recent call last)

{% for line in traceback.format_list(traceback.extract_tb(exc_info[2])) %}{{ line }}{% end %}
{% else %}

ERROR: {{ status_code }} – {{ reason }}

{% end %}
{{ handler.application.settings['service'] }} v{{ handler.application.settings['version'] }}
{% end %} {% block ui_js %}{% end %}