{% extends 'generic/object.html' %} {% load render_table from django_tables2 %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block extra_controls %}
{% if perms.netbox_rpki.change_certificate %} Prefix ASN ROA {% endif %}
{% endblock extra_controls %} {% block content %}
RPKI Customer Certificate
Tenant {% if object.tenant %} {{ object.tenant }} {% else %} None {% endif %}
Name {{ object.name }}
Issuer {{ object.issuer }}
Subject {{ object.subject }}
Serial {{ object.serial }}
Valid From {{ object.valid_from }}
Valid To {{ object.valid_to }}
Auto-renews? {{ object.auto_renews }}
Public Key {{ object.public_key }}
Private Key {{ object.private_key }}
Publication URL {{ object.publication_url }}
CA Repository {{ object.ca_repository }}
Self Hosted {{ object.self_hosted }}
Parent RPKI customer/org {{ object.rpki_org }}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
Attested IP Netblock Resources
{% render_table assigned_prefixes_table %}
Attested ASN Resource
{% render_table assigned_asns_table %}
ROAs
{% render_table signed_roas_table %}
{% endblock content %}