{% extends 'generic/object.html' %} {% load helpers %} {% load render_table from django_tables2 %} {% block content %}
CVE
CVE ID {{ object.cve_id }}
Name {{ object.name|placeholder }}
Severity {{ object.get_severity_display }}
Status {{ object.get_status_display }}
CVSS score {{ object.cvss_score|placeholder }}
Published {{ object.published_date|placeholder }}
Link {{ object.link|linkify|placeholder }}
Affected software {% for sv in object.affected_software.all %} {{ sv|linkify }}{% if not forloop.last %}, {% endif %} {% empty %} None {% endfor %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
Vulnerability Instances ({{ vulnerabilities_table.paginator.count }})
{% render_table vulnerabilities_table 'inc/table.html' %} {% include 'inc/paginator.html' with table=vulnerabilities_table paginator=vulnerabilities_table.paginator page=vulnerabilities_table.page %}
{% endblock %}