{% extends "base.html" %} {% load humanize %} {% block content %}

Generate Product Endpoint Report


{% if filtered %}

The {{ endpoints|length|apnumber }} endpoint{{ endpoints|length|pluralize }} listed below will be included in the report. Use the filters to fine tune the endpoints to be used.

{% endif %}
{% if filtered %}
{% for e in endpoints %} {% endfor %}
Endpoint Product Number of
Open Findings
{{ e|truncatechars:70 }} {{ e.product }} {{ e.finding_count }}
{% include "dojo/paging_snippet.html" with page=paged_endpoints %} {% else %} No endpoints found. {% endif %}
Filters
{{ filtered.form.as_p }}
Report Options

{% if endpoints|length <= 50 %} {% endif %}


{% endblock %}