{% extends "tcms_base.html" %} {% load report_tags %} {% load static %} {% block subtitle %}Builds Report - {{ product }}{% endblock %} {% block custom_stylesheet %} {% endblock %} {% block custom_javascript %} {% endblock %} {% block contents %}
Home >>Reporting >>{{ product }}
{% include 'report/nav.html' %}
{% if build %}

Build: {{ build }}

{% include "report/case_runs_status_subtotal.html" %}
{% endif %} {% for build in builds %} {% endfor %}
BUILD RUNS (Finished/ Total) Case Runs Progress Failed Case Runs
{{ build }}

{{ build.finished_runs }}/{{ build.total_runs }}

{{ build.finished_case_run_percent|default:'0' }}%
{% if build.failed_case_run_count %}
{{ build.failed_case_run_count|default:'0' }} Failed
{% endif %}
{% endblock %}