{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block breadcrumbs %} {{ block.super }} {% endblock breadcrumbs %} {% block content %}
Certificate Authority Details
Name {{ object.name }}
Type {% badge object.get_type_display %}
Approved {% if object.is_approved %} Approved {% else %} Not Approved {% endif %}
Certificates Issued {{ certificates_count }}
Contact Information
Website {% if object.website_url %} {{ object.website_url }} {% else %} Not specified {% endif %}
Portal URL {% if object.portal_url %} {{ object.portal_url }} {% else %} Not specified {% endif %}
Contact Email {% if object.contact_email %} {{ object.contact_email }} {% else %} Not specified {% endif %}
Auto-Detection
Issuer Pattern {% if object.issuer_pattern %} {{ object.issuer_pattern }} {% else %} Not configured {% endif %}
{% if object.description %}
Description
{{ object.description|linebreaks }}
{% endif %} {% if certificates %}
Recent Certificates ({{ certificates_count }} total)
{% for cert in certificates %} {% endfor %}
Common Name Status Valid To Days Remaining
{{ cert.common_name }} {% badge cert.get_status_display bg_color=cert.get_status_color %} {{ cert.valid_to|date:"Y-m-d" }} {% if cert.days_remaining < 0 %} Expired {% elif cert.days_remaining <= 14 %} {{ cert.days_remaining }} days {% elif cert.days_remaining <= 30 %} {{ cert.days_remaining }} days {% else %} {{ cert.days_remaining }} days {% endif %}
{% if certificates_count > 10 %} View All {{ certificates_count }} Certificates {% endif %}
{% endif %} {% endblock content %}