{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block breadcrumbs %} {{ block.super }} {% endblock breadcrumbs %} {% block content %}
CSR Details
Common Name {{ object.common_name }}
Status {% badge object.get_status_display bg_color=object.get_status_color %}
Fingerprint (SHA256) {{ object.fingerprint_sha256 }}
Tenant {% if object.tenant %} {{ object.tenant }} {% else %} None {% endif %}
Subject Information
Organization {{ object.organization|default:"-" }}
Organizational Unit {{ object.organizational_unit|default:"-" }}
Locality {{ object.locality|default:"-" }}
State {{ object.state|default:"-" }}
Country {{ object.country|default:"-" }}
Key Information
Algorithm {{ object.algorithm|upper }}
Key Size {{ object.key_size|default:"N/A" }} bits
Request Details
Requested Date {{ object.requested_date|date:"Y-m-d H:i" }}
Requested By {{ object.requested_by|default:"-" }}
Target CA {{ object.target_ca|default:"-" }}
{% if object.sans %}
Subject Alternative Names
    {% for san in object.sans %}
  • {{ san }}
  • {% endfor %}
{% endif %} {% if object.resulting_certificate %}
Resulting Certificate: {{ object.resulting_certificate.common_name }} (expires: {{ object.resulting_certificate.valid_to|date:"Y-m-d" }})
{% endif %} {% if object.notes %}
Notes
{{ object.notes|linebreaks }}
{% endif %} {% endblock content %}