{% extends 'generic/object.html' %}{% load helpers %} {% block extra_controls %}{% if can_export or can_export_pfx %} Export Bundle{% endif %}{% if can_add_link %} Link Object{% endif %}{% endblock %} {% block content %}

Bundle

Name{{ object.name }}
Status{{ object.get_status_display }}
Archive Format{{ object.get_archive_format_display }}
Source File{{ object.source_filename|placeholder }}
Certificate{% if visible_certificate %}{{ visible_certificate }}{% else %}—{% endif %}
Private Key{% if visible_private_key %}{{ visible_private_key }}{% else %}—{% endif %}
CSR{% if visible_csr %}{{ visible_csr }}{% else %}—{% endif %}

Certificate Chain / Authorities

{% if visible_chain %}
    {% for cert in visible_chain %}
  • {{ cert }}{% if cert.is_ca %} CA{% endif %}
  • {% endfor %}
{% else %}No visible chain certificates.{% endif %}
{% if chain_validation %}

Chain Validation

{% if chain_validation.valid %}VALID{% elif chain_validation.complete %}INVALID{% else %}INCOMPLETE{% endif %}
    {% for check in chain_validation.checks %}
  • {% if check.ok %}✓{% else %}✗{% endif %} {{ check.message }}
  • {% endfor %}
{% endif %}
{% include 'netbox_certificates/_groups.html' %}{% include 'netbox_certificates/_links.html' %}{% include 'inc/panels/custom_fields.html' %}{% include 'inc/panels/tags.html' %}{% include 'inc/panels/comments.html' %}
{% endblock %}