{% extends "base.html" %} {% load humanize %} {% load display_tags %} {% load static from staticfiles %} {% block add_styles %} .graph {min-height: 158px;} h3 { margin-top: 5px; margin-bottom: 5px; font-size: 20px; line-height: 22px;} .tooltip-inner { max-width: 650px; } {% endblock %} {% block content %}

{{ endpoint.host_no_port }} {% if endpoint.remediated %} - Remediated {% else %} - Vulnerable {% endif %} {{ endpoint.product }}

  Finding Age ({{ all_findings|length|apnumber }} verified finding{{ all_findings|length|pluralize }})
Opened bug count by month
{% if vulnerable and not endpoint.remediated %}

Vulnerable Services

{% else %}

Endpoints Services

{% endif %}
{% if endpoints %} {% colgroup endpoints into 3 cols as grouped_items %} {% for row in grouped_items %} {% for item in row %} {% endfor %} {% endfor %}
{% if item %} {{ item|url_shortner }}{% endif %}
{% else %}
No endpoints.
{% endif %}
{% if endpoint.tags %}

Tags

{% for tag in endpoint.tags %} {{ tag }} {% endfor %}
{% endif %} {% if endpoint_metadata %}

Additional Information

{% for key, value in endpoint_metadata.items %}
{{ key }}
{{ value }}
 
{% endfor %}
{% endif %}

Active Findings

{% if findings %} {% for finding in findings %} {% endfor %}
Title Date Severity Age
{{ finding.title }} {{ finding.date }} {{ finding.severity }} {{ finding.age }}
{% include "dojo/paging_snippet.html" with page=findings %}
{% else %}

No findings found.

{% endif %}
{% endblock %} {% block postscript %} {% endblock %}