{% extends "base.html" %} {% block title %}Certificates - Vacuum Wall{% endblock %} {% block content %}
| Domain | Issuer | Expiry Date | Days Left | Actions |
|---|---|---|---|---|
| {{ cert.get('domain', 'unknown') }} | {{ cert.get('issuer', '-') }} | {{ cert.get('expiry', 'N/A') }} | {% set days = cert.get('days_remaining') %} {% if cert.get('expired') or (days is not none and days <= 0) %} Expired{% if days %} ({{ days }}d ago){% endif %} {% elif days is not none and days <= 30 %} {{ days }} days {% else %} {{ days }} days {% endif %} | |
| No certificates found. Issue a certificate to get started. | ||||