{% extends 'layout.html.twig' %} {% block title %} {{ project.title }} » Markers {% endblock %} {% block content %}
{% if markerCount <= 0 %}
No markers have been found in this project.
{% endif %}
{% for file in project.files %} {% if file.markers.count > 0 %}

{{ file.path }} {{ file.markers.count }}

{% for marker in file.markers %} {% endfor %}
Type Line Description
{{ marker.type }} {{ marker.line }} {{ marker.message }}
{% endif %} {% endfor %}
{% endblock %}