{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load humanize %} {% block title %}{{ object }}{% endblock %} {% block header %}
{% if perms.change %} Edit {% endif %} {% if perms.delete %} Delete {% endif %}

CVE: {{ object }}

{% include 'inc/created_updated.html' with obj=object %}
{% custom_links object %}
{% endblock %} {% block content %}
CVE
Name {{ object.name }}
Published Date {% if object.published_date %} {{ object.published_date }} {% else %} — {% endif %}
Link {{ object.link }}
Status {% if object.status %} {{ object.get_status_display }} {% else %} — {% endif %}
Description {% if object.description %} {{ object.description }} {% else %} — {% endif %}
Severity {% if object.severity %} {{ object.severity }} {% else %} — {% endif %}
CVSS Base Score {% if object.cvss %} {{ object.cvss }} {% else %} — {% endif %}
CVSSv2 Score {% if object.cvss_v2 %} {{ object.cvss_v2 }} {% else %} — {% endif %}
CVSSv3 Score {% if object.cvss_v3 %} {{ object.cvss_v3 }} {% else %} — {% endif %}
Fix {% if object.fix %} {{ object.fix }} {% else %} — {% endif %}
Comments {% if object.comments %}
{{ object.comments|placeholder  }}
{% else %} — {% endif %}
{% include 'inc/custom_fields_panel.html' %} {% include 'inc/relationships_panel.html' %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all %}
{% endblock %}