{% extends 'generic/object.html' %} {% load render_table from django_tables2 %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block extra_controls %}
{% if perms.netbox_rpki.change_roa %} ROA Prefix {% endif %}
{% endblock extra_controls %} {% block content %}
RPKI Route Origination Authorization (ROA)
Name {{ object.name }}
Tenant {% if object.tenant %} {{ object.tenant }} {% else %} None {% endif %}
Origination AS Number {{ object.origin_as }}
Date Valid From {{ object.date_from }}
Date Valid To {{ object.date_to }}
Auto-renews {{ object.auto_renews }}
Signing Certificate {{ object.signed_by.name }}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
Prefixes Included in this ROA
{% render_table myroaprefixes_table %}
{% endblock content %}