{% set no_path_section = true %} {% set page_name = "error" %} {% extends "layout/basic.html" %} {% block content %}

{{ _('Oops!') }}

{{ _(error.message).format(error.args) }}

{{ _('Technical Information') }}:

{{ _('Type') }}: {{ error.code }}

{{ _('Arguments') }}:

    {% for arg in error.args %}
  1. {{ arg }}
  2. {% endfor %}

{% endblock %}