{% extends 'layout.html.twig' %} {% block title %} {{ project.title }} » Compilation errors {% endblock %} {% block content %}
{% if errorCount <= 0 %}
No errors have been found in this project.
{% endif %} {% for file in project.files %}
{% if file.allerrors|length > 0 %}

{{ file.path }} {{ file.allerrors|length }}

{% for error in file.allerrors %} {% endfor %}
Type Line Description
{{ error.severity }} {{ error.line }} {{ error.code|trans(error.context) }}
{% endif %}
{% endfor %}
{% endblock %}