{% extends "base.html" %}
{% load event_tags %}
{% load display_tags %}
{% load static %}
{% block add_styles %}
{{ block.super }}
#chart_div3 .flot-x-axis .tickLabel, #chart_div4 .flot-x-axis .tickLabel
{ top: 290px !important;
font-size: 10px;
transform: rotate(-15deg);
-ms-transform:rotate(-15deg); /* IE 9 */
-moz-transform:rotate(-15deg); /* Firefox */
-webkit-transform:rotate(-15deg); /* Safari and Chrome */
-o-transform:rotate(-15deg); /* Opera */
}
#chart_div, #chart_div2, #chart_div3, #chart_div4 {height: 300px}
{% endblock %}
{% block content %}
{{ block.super }}
{{ name }}
Risk Accepted Bug Count by Month
Risk Accepted Bug Count by Week
Detail Breakdown
Team |
Application Name |
Severity |
Short Description |
Days Open |
Status |
Engineer |
{% for detail in details %}
{{ detail.0 }} |
{{ detail.1 }} |
{{ detail.2 }} |
{{ detail.3 }} |
{{ detail.4 }} |
{{ detail.5 }} |
{{ detail.6 }} |
{% endfor %}
Top 10 products by bug severity
{% if metric %}
Product |
Critical |
High |
Medium |
Low |
Total |
{% for t in update %}
{{ t.0|safe }} |
{{ t.1 }} |
{{ t.2 }} |
{{ t.3 }} |
{{ t.4 }} |
{{ t.5 }} |
{% endfor %}
{% endif %}
Opened This Week
Critical |
High |
Medium |
Low |
Total |
{{ open_week_count.crit }} |
{{ open_week_count.high }} |
{{ open_week_count.med }} |
{{ open_week_count.low }} |
{{ open_week | length }} |
Product |
Critical |
High |
Medium |
Low |
Total |
{% for key, value in o_week_dict.items %}
{{ key }} |
{% for i in value %}
{{ i }} |
{% endfor %}
{% endfor %}
Opened This Month
Critical |
High |
Medium |
Low |
Total |
{{ critical_open_month }} |
{{ high_open_month }} |
{{ medium_open_month }} |
{{ low_open_month }} |
{{ open_month | length }} |
Product |
Critical |
High |
Medium |
Low |
Total |
{% for key, value in o_dict.items %}
{{ key }} |
{% for i in value %}
{{ i }} |
{% endfor %}
{% endfor %}
Risk Accepted This Week
Critical |
High |
Medium |
Low |
Total |
{{ accepted_week_count.crit }} |
{{ accepted_week_count.high }} |
{{ accepted_week_count.med }} |
{{ accepted_week_count.low }} |
{{ accepted_week | length }} |
Product |
Critical |
High |
Medium |
Low |
Total |
{% for key, value in a_week_dict.items %}
{{ key }} |
{% for i in value %}
{{ i }} |
{% endfor %}
{% endfor %}
Risk Accepted This Month
Critical |
High |
Medium |
Low |
Total |
{{ critical_a_month }} |
{{ high_a_month }} |
{{ medium_a_month }} |
{{ low_a_month }} |
{{ a_month | length }} |
Product |
Critical |
High |
Medium |
Low |
Total |
{% for key, value in a_dict.items %}
{{ key }} |
{% for i in value %}
{{ i }} |
{% endfor %}
{% endfor %}
Closed This Week
Critical |
High |
Medium |
Low |
Total |
{{ closed_week_count.crit }} |
{{ closed_week_count.high }} |
{{ closed_week_count.med }} |
{{ closed_week_count.low }} |
{{ closed_week | length }} |
Product |
Critical |
High |
Medium |
Low |
Total |
{% for key, value in c_week_dict.items %}
{{ key }} |
{% for i in value %}
{{ i }} |
{% endfor %}
{% endfor %}
Closed This Month
Critical |
High |
Medium |
Low |
Total |
{{ critical_c_month }} |
{{ high_c_month }} |
{{ medium_c_month }} |
{{ low_c_month }} |
{{ closed_month | length }} |
Product |
Critical |
High |
Medium |
Low |
Total |
{% for key, value in c_dict.items %}
{{ key }} |
{% for i in value %}
{{ i }} |
{% endfor %}
{% endfor %}
Trending Open Bug Count
Weekly |
Critical |
High |
Medium |
Low |
Total |
Closed |
{% for items in week_stuff %}
{% for item in items %}
{{ item }} |
{% endfor %}
{% endfor %}
Monthly |
Critical |
High |
Medium |
Low |
Total |
Closed |
{% for items in total %}
{% for item in items %}
{{ item }} |
{% endfor %}
{% endfor %}
Trending Risk Accepted Bug Count
By Week |
Critical |
High |
Medium |
Low |
Total |
{% for items in week_a_stuff %}
{% for item in items %}
{{ item }} |
{% endfor %}
{% endfor %}
By Month |
Critical |
High |
Medium |
Low |
Total |
{% for items in a_total %}
{% for item in items %}
{{ item }} |
{% endfor %}
{% endfor %}
{% if metric %}
All Issues
Product |
Critical |
High |
Medium |
Low |
Total |
{% for t in total_update %}
{{ t.0|safe }} |
{{ t.1 }} |
{{ t.2 }} |
{{ t.3 }} |
{{ t.4 }} |
{{ t.5 }} |
{% endfor %}
{% endif %}
Age of Open Issues (Critical and High Only)
Days |
Bug Count |
0 - 30 Days |
{{ lt }} |
31 - 60 Days |
{{ ls }} |
61 - 90 Days |
{{ ln }} |
91+ Days |
{{ mn }} |
{% endblock %}
{% block postscript %}
{{ block.super }}
{% block metrics %}
{% endblock metrics %}
{% endblock %}