{% extends "tcms_base.html" %} {% load report_tags %} {% load static %} {% block subtitle %}Custom Report Detail{% endblock %} {% block custom_stylesheet %} {% endblock %} {% block custom_javascript %} {% endblock %} {% block contents %}
Home >> Custom >> {% for build in builds %}{{ build }}{% endfor %}
{{ form.product.label }}: {{ form.product }}
{{ form.pk__in.label }}: {{ form.pk__in }}
{% if report_errors %}
{{ report_errors }}
{% endif %}
{% if not report_errors %} {% for build in builds %} {% endfor %}
{{ build }} 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 %}