{% extends "base.html" %}
{% load event_tags %}
{% load display_tags %}
{% block content %}
All New Issues This Month
| Product |
{% severity_value 'Critical' %} |
{% severity_value 'High' %} |
{% severity_value 'Medium' %} |
{% severity_value 'Low' %} |
Total |
{% for key, value in month_all_by_product.items %}
| {{ key }} |
{% for i in value %}
{{ i }} |
{% endfor %}
{% endfor %}
|
All New Issues This Week
| Product |
{% severity_value 'Critical' %} |
{% severity_value 'High' %} |
{% severity_value 'Medium' %} |
{% severity_value 'Low' %} |
Total |
{% for key, value in week_all_by_product.items %}
| {{ key }} |
{% for i in value %}
{{ i }} |
{% endfor %}
{% endfor %}
|
Verified New Issues This Month
| Product |
{% severity_value 'Critical' %} |
{% severity_value 'High' %} |
{% severity_value 'Medium' %} |
{% severity_value 'Low' %} |
Total |
{% for key, value in month_verified_by_product.items %}
| {{ key }} |
{% for i in value %}
{{ i }} |
{% endfor %}
{% endfor %}
|
Verified New Issues This Week
| Product |
{% severity_value 'Critical' %} |
{% severity_value 'High' %} |
{% severity_value 'Medium' %} |
{% severity_value 'Low' %} |
Total |
{% for key, value in week_verified_by_product.items %}
| {{ key }} |
{% for i in value %}
{{ i }} |
{% endfor %}
{% endfor %}
|
Remaining Issues
| {% severity_value 'Critical' %} |
{% severity_value 'High' %} |
{% severity_value 'Medium' %} |
{% severity_value 'Low' %} |
Total |
{% for key, value in remaining_aggregate.items %}
| {{ value }} |
{% endfor %}
{{ remaining_aggregate | sum_dict }} |
|
Remaining Issues By Product
| Product |
{% severity_value 'Critical' %} |
{% severity_value 'High' %} |
{% severity_value 'Medium' %} |
{% severity_value 'Low' %} |
Total |
{% for key, value in remaining_by_product.items %}
| {{ key }} |
{% for i in value %}
{{ i }} |
{% endfor %}
{% endfor %}
|
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 %}