{# -*- engine: jinja -*- #}
{% set class_sortable = " sortable" if not info.static_report and entries | length > 1 else "" %}
File
Lines
Functions
Branches
{% if SHOW_CONDITION_COVERAGE %}
Conditions
{% endif %} {% if SHOW_DECISION %}
Decisions
{% endif %} {% if SHOW_CALLS %}
Calls
{% endif %}
{% for row in entries %}
{% if row.link is not none %} {{row.filename}} {% else %} {{row.filename}} {% endif %}
{% if row.lines.coverage != "-" %} {{row.lines.coverage}} {% endif %}
{{row.lines.coverage}}% {{row.lines.exec}} / {{row.lines.excluded}} / {{row.lines.total}}
{{row.functions.coverage}}% {{row.functions.exec}} / {{row.functions.excluded}} / {{row.functions.total}}
{{row.branches.coverage}}% {{row.branches.exec}} / {{row.branches.excluded}} / {{row.branches.total}}
{% if SHOW_CONDITION_COVERAGE %}
{{row.conditions.coverage}}% {{row.conditions.exec}} / {{row.conditions.excluded}} / {{row.conditions.total}}
{% endif %} {% if SHOW_DECISION %}
{{row.decisions.coverage}}% {{row.decisions.exec}} / {{row.decisions.excluded}} / {{row.decisions.total}}
{% endif %} {% if SHOW_CALLS %}
{{row.calls.coverage}}% {{row.calls.exec}} / {{row.calls.excluded}} / {{row.calls.total}}
{% endif %}
{% endfor %}