{% extends "_layout.html" %} {% set active_page = 'errors' %} {% set show_filters = False %} {% block content %}

Errors

{% if api.errors %} {% for error in api.errors %} {% with link=url_for_source(file_path=error.file, line=error.line) %} {% endwith %} {% endfor %}
File Line Error
{{ error.file }} {{ error.line }} {{ error.error }}
{% else %}

No errors.

{% endif %} {% endblock %}