{# -*- engine: jinja -*- #}
{% if SHOW_CONDITION_COVERAGE %}
{% endif %} {% if SHOW_DECISION %}
{% endif %} {% if SHOW_CALLS %}
{% endif %}
{% for row in entries %}
{% if row.link is not none %} {{row.filename}} {% else %} {{row.filename}} {% endif %}
{{row.lines.exec}} of {{row.lines.total}} lines, {{row.lines.excluded}} excl ({{row.lines.coverage}}%)
{{row.lines.coverage}}%
{% if row.lines.coverage == "-" %} {% else %} {% endif %}
{{row.functions.exec}} of {{row.functions.total}} functions, {{row.functions.excluded}} excl
{{row.functions.coverage}}%
{{row.branches.exec}} of {{row.branches.total}} branches, {{row.branches.excluded}} excl
{{row.branches.coverage}}%
{% if SHOW_CONDITION_COVERAGE %}
{{row.conditions.exec}} of {{row.conditions.total}} conditions, {{row.conditions.excluded}} excl
{{row.conditions.coverage}}%
{% endif %} {% if SHOW_DECISION %}
{{row.decisions.exec}} of {{row.decisions.total}} decisions
{{row.decisions.coverage}}%
{% endif %} {% if SHOW_CALLS %}
{{row.calls.exec}} of {{row.calls.total}} calls, {{row.calls.excluded}} excl
{{row.calls.coverage}}%
{% endif %}
{% endfor %}