{% extends 'base.html' %} {% block content %} {% block extra %}{% endblock %}
Validated {{ epoch.when|date:"DATETIME_FORMAT" }} UTC
{% comment %}
{{ dot }}
{% endcomment %}
{% autoescape off %} {{ svg }} {% endautoescape %}
{% for cert in certs %}
URI: {{ cert.get_uri }}
Hash: {{ cert.sha256 }}

Issuer: {{ cert.issuer_name }}
Subject: {{ cert.subject_name }}
Serial: {{ cert.serial }}
Not Before: {{ cert.not_before }}
Not After: {{ cert.not_after }}
{% if cert.aki %} AKI: {{ cert.aki }}
{% endif %} SKI: {{ cert.ski }}
SIA Directory URI: {% for u in cert.sia_directory_uri.all %}{{ u }}{% endfor %}
Manifest URI: {% for u in cert.manifest_uri.all %}{{ u }}{% endfor %}
{% if cert.aia_uri %} AIA URI: {{ cert.aia_uri }}
{% endif %} {% if cert.crldp.all %} CRLDP: {% for u in cert.crldp.all %}{{ u }}{% endfor %}
{% endif %}

ASNs: {% for asn in cert.asns.all %} {{ asn }} {% endfor %}
Prefixes: {% for addr in cert.addresses.all %} {{ addr }} {% endfor %}

Status
{% for status in cert.get_status %} {{ status.status }}
{% endfor %}

{% endfor %} {% for roa in roas %}
URI: {{ roa.get_uri }}
Hash: {{ roa.sha256 }}

Issuer: {{ roa.issuer_name }}
Subject: {{ roa.subject_name }}
AKI: {{ roa.aki }}
SKI: {{ roa.ski }}
Serial: {{ roa.serial}}
Not Before: {{ roa.not_before }}
Not After: {{ roa.not_after }}

AS: {{ roa.asid }}
Prefix: {% for pfx in roa.prefixes.all %} {{ pfx }} {% endfor %}

Status
{% for status in roa.get_status %} {{ status.status }}
{% endfor %}

{% endfor %} {% for gbr in gbrs %}
URI: {{ gbr.get_uri }}
Hash: {{ gbr.sha256 }}

Issuer: {{ gbr.issuer_name }}
Subject: {{ gbr.subject_name }}
AKI: {{ gbr.aki }}
SKI: {{ gbr.ski }}
Serial: {{ gbr.serial }}
Not Before: {{ gbr.not_before }}
Not After: {{ gbr.not_after }}

Full Name: {{ gbr.full_name }}
Organization: {{ gbr.organization }}
Email: {{ gbr.email_address }}
Telephone: {{ gbr.telephone }}

Status
{% for status in gbr.get_status %} {{ status.status }}
{% endfor %}

{% endfor %} {% for mft in mfts %}
URI: {{ mft.get_uri }}

Issuer: {{ mft.issuer_name }}
Subject: {{ mft.subject_name }}
AKI: {{ mft.aki }}
SKI: {{ mft.ski }}
Serial: {{ mft.serial }}
Not Before: {{ mft.not_before }}
Not After: {{ mft.not_after }}

thisUpdate: {{ mft.this_update }}
nextUpdate: {{ mft.next_update }}
manifestNumber: {{ mft.manifest_number }}
File Hash Algorithm: {{ mft.algorithm }}

Status
{% for status in mft.get_status %} {{ status.status }}
{% endfor %}

{% for fah in mft.files.all %} {% endfor %}
Filename Hash
{{ fah.filename }} {{ fah.filehash }}

{% endfor %} {% for crl in crls %}
URI: {{ crl.get_uri }}
Hash: {{ crl.sha256 }}

Issuer: {{ crl.issuer_name }}
AKI: {{ crl.aki }}
thisUpdate: {{ crl.this_update }}
nextUpdate: {{ crl.next_update }}
crlNumber: {{ crl.crl_number }}

Status
{% for status in crl.get_status %} {{ status.status }}
{% endfor %}

{% for e in crl.revocations.all %} {% endfor %}
Serial Number Revocation Time
{{ e.serial }}{{ e.revoked|date:"DATETIME_FORMAT" }}

{% endfor %} {% endblock %}