{% extends "base.html" %} {% block title %}Certificates - Vacuum Wall{% endblock %} {% block content %}
{% for cert in (certs or []) %} {% endfor %} {% if not (certs or []) %} {% endif %}
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.
{% endblock %}