{% extends "tcms_base.html" %} {% load static %} {% load report_tags %} {% block subtitle %}Custom Report Detail{% endblock %} {% block custom_stylesheet %} {% endblock %} {% block custom_javascript %} {% endblock %} {% block contents %}
{{ form.product.label }}: {{ form.product }}
{{ form.version.label }}: {{ form.version }}
{{ form.build.label }}: {{ form.build }}
{% if report_errors %}
{{ report_errors }}
{% endif %}
{% if not report_errors %} {% for build in builds %} {% endfor %}
{{ build.build__name }} Plan{{ build.plans_count|default_if_none:0 }} Run{{ build.runs_count|default_if_none:0 }} Manual Cases{{manual_count|percentage:total_count}} ({{manual_count}}/{{total_count}}) Automated Cases{{auto_count|percentage:total_count}} ({{auto_count}}/{{total_count}}) Manual/Automated{{both_count|percentage:total_count}} ({{both_count}}/{{total_count}}) Passed Case-Run
 
{{ build.passed_case_runs_percent|floatformat:1 }}% ({{ build.passed_case_runs_count }})
Failed Case-Run
 
{{ build.failed_case_runs_percent|floatformat:1 }}% ({{ build.failed_case_runs_count }})
 
{% include "report/custom_details_status_matrix.html" %}
All Failed Case-Run List
{% include "report/custom_details_case_runs.html" with case_runs=failed_case_runs %}
All Blocked Case-Run List
{% include "report/custom_details_case_runs.html" with case_runs=blocked_case_runs %} {% endif %} {# endif report_errors #}
{% endblock %}