{% extends "base.html" %} {% block title %}Certificates - Hop3 Dashboard{% endblock %} {% block content %}
TLS certificate, domain-registration, and DNS health for each app's domain. Certificates renew automatically before expiry.
| App | Domain | Cert type | Cert expiry | Domain reg. | DNS |
|---|---|---|---|---|---|
| {{ c.app_name }} | {{ c.domain }} | {{ c.kind }} | {% if c.status == "ok" %} {{ c.days_left }}d {% elif c.status == "expiring" %} {{ c.days_left }}d {% elif c.status == "expired" %} Expired {% else %} Missing {% endif %} | {{ (c.reg_days_left ~ "d") if c.reg_days_left is not none else "—" }} | {% if c.dns == "ok" %} ok {% elif c.dns == "no DNS" or c.dns == "elsewhere" %} {{ c.dns }} {% else %} {{ c.dns }} {% endif %} |