{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load humanize %} {% block title %}{{ object }}{% endblock %} {% block header %}
| 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 %} |