{% if top_ten_products %}
Product |
Critical |
High |
Medium |
Low |
Total |
{% for t in top_ten_products %}
{{ t.name }}
|
{{ t.critical|default_if_none:0 }} |
{{ t.high|default_if_none:0 }} |
{{ t.medium|default_if_none:0 }} |
{{ t.low|default_if_none:0 }} |
{{ t.total|default_if_none:0 }} |
{% endfor %}
{% endif %}
Team |
Product |
Severity |
Description |
Days Open |
Status |
Reporter |
{% for finding in findings.qs %}
{{ finding.test.engagement.product.prod_type.name }} |
{{ finding.test.engagement.product.name|truncatechars_html:20 }}
|
{{ finding.severity_display }} |
{{ finding.title|truncatechars_html:20 }}
|
{{ finding.age }} |
{{ finding.status }} |
{{ finding.reporter }} |
{% endfor %}
Opened During Period
Critical |
High |
Medium |
Low |
Info |
Total |
{{ in_period_counts.Critical }} |
{{ in_period_counts.High }} |
{{ in_period_counts.Medium }} |
{{ in_period_counts.Low }} |
{{ in_period_counts.Info }} |
{{ in_period_counts.Total }} |
Product |
Critical |
High |
Medium |
Low |
Info |
Total |
{% for key, value in in_period_details.items %}
{{ key }} |
{{ value.Critical }} |
{{ value.High }} |
{{ value.Medium }} |
{{ value.Low }} |
{{ value.Info }} |
{{ value.Total }} |
{% endfor %}
Accepted in Period
Critical |
High |
Medium |
Low |
Info |
Total |
{{ accepted_in_period_counts.critical|default_if_none:0 }} |
{{ accepted_in_period_counts.high|default_if_none:0 }} |
{{ accepted_in_period_counts.medium|default_if_none:0 }} |
{{ accepted_in_period_counts.low|default_if_none:0 }} |
{{ accepted_in_period_counts.info|default_if_none:0 }} |
{{ accepted_in_period_counts.total|default_if_none:0 }} |
Product |
Critical |
High |
Medium |
Low |
Info |
Total |
{% for key, value in accepted_in_period_details.items %}
{{ key }} |
{{ value.Critical }} |
{{ value.High }} |
{{ value.Medium }} |
{{ value.Low }} |
{{ value.Info }} |
{{ value.Total }} |
{% endfor %}
Closed in Period
Critical |
High |
Medium |
Low |
Info |
Total |
{{ closed_in_period_counts.Critical }} |
{{ closed_in_period_counts.High }} |
{{ closed_in_period_counts.Medium }} |
{{ closed_in_period_counts.Low }} |
{{ closed_in_period_counts.Info }} |
{{ closed_in_period_counts.Total }} |
Product |
Critical |
High |
Medium |
Low |
Info |
Total |
{% for key, value in closed_in_period_details.items %}
{{ key }} |
{{ value.Critical }} |
{{ value.High }} |
{{ value.Medium }} |
{{ value.Low }} |
{{ value.Info }} |
{{ value.Total }} |
{% endfor %}
Weekly |
Critical |
High |
Medium |
Low |
Total |
Closed* |
{% for week in opened_per_week|slice:'1:' %}
{{ week.1|date:"m-d-Y" }} |
{{ week.2 }} |
{{ week.3 }} |
{{ week.4 }} |
{{ week.5 }} |
{{ week.6 }} |
{{ week.7 }} |
{% endfor %}
Monthly |
Critical |
High |
Medium |
Low |
Total |
Closed* |
{% for month in opened_per_month|slice:'1:' %}
{{ month.1|date:"m-Y" }} |
{{ month.2 }} |
{{ month.3 }} |
{{ month.4 }} |
{{ month.5 }} |
{{ month.6 }} |
{{ month.7 }} |
{% endfor %}
*Closed findings may have been opened outside of requested period.
By Week |
Critical |
High |
Medium |
Low |
Total |
{% for week in accepted_per_week|slice:'1:' %}
{{ week.1|date:"m-d-Y" }} |
{{ week.2 }} |
{{ week.3 }} |
{{ week.4 }} |
{{ week.5 }} |
{{ week.6 }} |
{% endfor %}
By Month |
Critical |
High |
Medium |
Low |
Total |
{% for month in accepted_per_month|slice:'1:' %}
{{ month.1|date:"m-Y" }} |
{{ month.2 }} |
{{ month.3 }} |
{{ month.4 }} |
{{ month.5 }} |
{{ month.6 }} |
{% endfor %}
Days |
Bug Count |
0 - 30 Days |
{{ age_detail.0 }} |
31 - 60 Days |
{{ age_detail.1 }} |
61 - 90 Days |
{{ age_detail.2 }} |
91+ Days |
{{ age_detail.3 }} |