{# -*- engine: jinja -*- #}
{% for row in info.files %}
{% if row.link is not none %} {{row.filename}} {% else %} {{row.filename}} {% endif %}
{{row.lines.exec}} of {{row.lines.total}} lines ({{row.lines.coverage}}%)
{{row.lines.coverage}}%
{{row.functions.exec}} of {{row.functions.total}} functions
{{row.functions.coverage}}%
{{row.branches.exec}} of {{row.branches.total}} branches
{{row.branches.coverage}}%
{% if SHOW_DECISION %}
{{row.decisions.exec}} of {{row.decisions.total}} decisions
{{row.decisions.coverage}}%
{% endif %} {% if not EXCLUDE_CALLS %}
{{row.calls.exec}} of {{row.calls.total}} calls
{{row.calls.coverage}}%
{% endif %}
{% endfor %}