{% extends "tcms_base.html" %}
{% load static %}
{% load report_tags %}
{% block subtitle %}Custom Report{% endblock %}
{% block custom_stylesheet %}
{% endblock %}
{% block custom_javascript %}
{% endblock %}
{% block contents %}
{% if builds %}
{{ builds|length }} builds are selected
Plan{{ total_plans_count }} Run{{ total_runs_count }}Manual Cases{{manual_count|percentage:total_count}}({{manual_count}}/{{total_count}})Automated Cases{{auto_count|percentage:total_count}}({{auto_count}}/{{total_count}})
Build |
Plan |
Run |
Case-Run |
Passed case-run |
Failed case-run |
{% for build in builds %}
{% if build.plans_count %}{% endif %}{{ build.build__name }}
|
{{ build.plans_count|default_if_none:0 }} |
{% if build.runs_count %}
{{ build.runs_count }}
{% else %}{{ build.runs_count|default_if_none:0 }}{% endif %}
|
{{ build.case_runs_count|default_if_none:0 }} |
{{ build.passed_case_runs_percent|floatformat:1 }}% ({{ build.passed_case_runs_count }})
|
{{ build.failed_case_runs_percent|floatformat:1 }}% ({{ build.failed_case_runs_count }})
|
{% endfor %}
{% else %}
Build |
Plan |
Run |
Case-Run |
Passed case-run |
Failed case-run |
{% endif %}
{% endblock %}