{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block breadcrumbs %} {{ block.super }} {% endblock breadcrumbs %} {% block content %}
Endpoint Details
{% if object.last_error %} {% endif %}
Name {{ object.name }}
URL {% if object.url|slice:':8'|lower == 'https://' or object.url|slice:':7'|lower == 'http://' %} {{ object.url }} {% else %}{{ object.url }}{% endif %}
SNI {{ object.sni|default:"—" }}
Status {% badge object.get_status_display %}
Certificate {% if object.certificate %} {{ object.certificate }} {% else %} None {% endif %}
Days Remaining {{ object.days_remaining|default:"—" }}
Tenant {% if object.tenant %} {{ object.tenant }} {% else %} None {% endif %}
Last Checked {{ object.last_checked|date:"Y-m-d H:i:s"|default:"Never" }}
Last Seen {{ object.last_seen|date:"Y-m-d H:i:s"|default:"Never" }}
Last Error {{ object.last_error }}
{# Rotation History tab #}
{% with history=object.cert_history.all %} {% if history %} {% for entry in history %} {% endfor %}
Certificate First Seen Last Seen
{{ entry.certificate }} {{ entry.first_seen|date:"Y-m-d H:i" }} {{ entry.last_seen|date:"Y-m-d H:i" }}
{% else %}

No rotation history recorded yet.

{% endif %} {% endwith %}
{% endblock content %}