{% extends "base.html" %} {% load event_tags %} {% load display_tags %} {% block content %}

All New Issues This Month

{% for key, value in month_all_by_product.items %} {% for i in value %} {% endfor %} {% endfor %}
Product {% severity_value 'Critical' %} {% severity_value 'High' %} {% severity_value 'Medium' %} {% severity_value 'Low' %} Total
{{ key }} {{ i }}

All New Issues This Week

{% for key, value in week_all_by_product.items %} {% for i in value %} {% endfor %} {% endfor %}
Product {% severity_value 'Critical' %} {% severity_value 'High' %} {% severity_value 'Medium' %} {% severity_value 'Low' %} Total
{{ key }} {{ i }}

Verified New Issues This Month

{% for key, value in month_verified_by_product.items %} {% for i in value %} {% endfor %} {% endfor %}
Product {% severity_value 'Critical' %} {% severity_value 'High' %} {% severity_value 'Medium' %} {% severity_value 'Low' %} Total
{{ key }} {{ i }}

Verified New Issues This Week

{% for key, value in week_verified_by_product.items %} {% for i in value %} {% endfor %} {% endfor %}
Product {% severity_value 'Critical' %} {% severity_value 'High' %} {% severity_value 'Medium' %} {% severity_value 'Low' %} Total
{{ key }} {{ i }}

Remaining Issues

{% for key, value in remaining_aggregate.items %} {% endfor %}
{% severity_value 'Critical' %} {% severity_value 'High' %} {% severity_value 'Medium' %} {% severity_value 'Low' %} Total
{{ value }} {{ remaining_aggregate | sum_dict }}

Remaining Issues By Product

{% for key, value in remaining_by_product.items %} {% for i in value %} {% endfor %} {% endfor %}
Product {% severity_value 'Critical' %} {% severity_value 'High' %} {% severity_value 'Medium' %} {% severity_value 'Low' %} Total
{{ key }} {{ i }}

Average Time to Close (Days)

{% severity_value 'Critical' %} {% severity_value 'High' %} {% severity_value 'Medium' %} {% severity_value 'Low' %}
{{ time_to_close.S0 }} {{ time_to_close.S1 }} {{ time_to_close.S2 }} {{ time_to_close.S3 }}
{% endblock %}