{% extends "cacheview/signedobject_detail.html" %}
{% block title %}
Resource Certificate Detail
{% endblock %}
{% block detail %}
RFC3779 Resources
| AS Ranges | IP Ranges |
{% if object.inherit_asn %}
inherit
{% endif %}
{% for asn in object.asns.all %}
- {{ asn }}
{% endfor %}
|
{% if object.inherit_v4 %}
v4:inherit
{% endif %}
{% if object.inherit_v6 %}
v6:inherit
{% endif %}
{% for rng in object.addresses.all %}
- {{ rng }}
{% endfor %}
|
Issued Objects
{% if ghostbusters.all %}
Ghostbusters
| Name | Expires |
{% for g in ghostbusters.all %}
| {{ g }} |
{{ g.not_after }} |
{% endfor %}
{% endif %}
{% if roas.all %}
ROAs
| # | Prefix | AS | Expires |
{% for roa in roas.all %}
{% for pfx in roa.prefixes.all %}
| # |
{{ pfx }} |
{{ roa.asid }} |
{{ roa.not_after }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if children.all %}
Children
| SKI | Expires |
{% for child in children.all %}
| {{ child.ski }} |
{{ child.not_after }} |
{% endfor %}
{% endif %}
Invalid Objects
| URI |
Status |
{% for obj in invalid %}
| {{ obj.uri }} |
{% for status in obj.statuses.all %}
- {{ status.label }}
{% endfor %}
|
{% endfor %}
{% endblock %}