{% import "macros.html" as macros %} {% extends "base.html" %} {% block title %}Grcov report - {{ current }} {% endblock title %} {%- block content -%} {{ macros::summary(parents=parents, stats=stats, precision=precision) }} {% if branch_enabled %} {% endif %} {%- if kind == "Directory" -%} {%- for item, info in items -%} {{ macros::stats_line(name=item, url=item~"/index.html", stats=info.stats, precision=precision) }} {%- endfor -%} {%- else -%} {%- for item, info in items -%} {{ macros::stats_line(name=item, url=item~".html", stats=info.stats, precision=precision) }} {%- endfor -%} {%- endif -%}
{{ kind }} Line Coverage FunctionsBranches
{%- endblock content -%}