{% extends "gaps/gaps_layout.html" %} {% load dashboard_extras staticfiles %} {% load percentage %} {% block content %}

Project: {{ project.name }}

{% if coverage_datas|length > 0 %}
{% for coverage_data in coverage_datas %} {% endfor %}
Jenkins Build Line Coverage Branch Coverage
{{ coverage_data.coverage_build.ran_at }} {{ coverage_data.line_coverage|percentage }}% {{ coverage_data.branch_coverage|percentage }}%
{% else %} No coverage data was found for this project. Please pursue with your QA contact or on freenode in the #ubuntu-quality channel. {% endif %}
{% endblock %}