{% extends 'generic/object.html' %} {% load helpers %} {% block content %}
Software Version
Platform {{ object.platform|linkify }}
Version {{ object.version }}
Alias {{ object.alias|placeholder }}
Release date {{ object.release_date|placeholder }}
End of support {{ object.end_of_support|placeholder }} {% if object.end_of_support_passed %}Past due{% endif %}
LTS {% checkmark object.long_term_support %}
Documentation {{ object.documentation_url|linkify|placeholder }}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
Image Files ({{ image_files.count }})
    {% for image in image_files %}
  • {{ image|linkify }}
  • {% empty %}
  • None
  • {% endfor %}
Validated Software Rules ({{ validated_rules.count }})
    {% for rule in validated_rules %}
  • {{ rule|linkify }} {% if rule.preferred %}Preferred{% endif %}
  • {% empty %}
  • None
  • {% endfor %}
CVEs ({{ cves.count }})
    {% for cve in cves %}
  • {{ cve|linkify }} {{ cve.get_severity_display }}
  • {% empty %}
  • None
  • {% endfor %}
Devices Running ({{ devices_running.count }})
    {% for ds in devices_running %}
  • {{ ds.device|linkify }}
  • {% empty %}
  • None
  • {% endfor %}
{% endblock %}