{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block breadcrumbs %} {{ block.super }}
| Name | {{ object.name }} |
|---|---|
| Type | {% badge object.get_type_display %} |
| Approved | {% if object.is_approved %} Approved {% else %} Not Approved {% endif %} |
| Certificates Issued | {{ certificates_count }} |
| 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 %} |
| Issuer Pattern |
{% if object.issuer_pattern %}
{{ object.issuer_pattern }}
{% else %}
Not configured
{% endif %}
|
|---|
| 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 %} |