{% extends "layout.html.tpl" %} {% block title %} Appier - Error {% endblock %} {% block head %} {{ super() }} {% set highlighter = config.conf("HIGHLIGHTER", "prism") %} {% if highlighter == "prism" %} {% endif %} {% if highlighter == "highlight.js" %} {% endif %} {% endblock %} {% block content %}

{{ full_name }}

{{ code }} - {{ message }}

{% if lines %}
{% if extended %} {% for item in extended %}
File "{{ item.path }}", line {{ item.lineno }}, in {{ item.context }} {% if item.git_url %} • {{ item.git_service|default("git", True) }} {% endif %}
{{ item.line }}
{% for line in item.lines %}
{{ line.lineno }}{{ line.line|nl_to_br|sp_to_nbsp }}
{% endfor %} {% if item.contents %}
{{ item.contents_d }}
{% endif %}
{% endfor %} {% else %} {% for line in lines %}
{{ line }}
{% endfor %} {% endif %}
{% endif %}
{% endblock %} {% block footer %} {{ super() }}
{{ uid }} {% endblock %}