{% extends "base.html" %} {% block title %} - Dashboard{% endblock %} {% block content %}

Dashboard

Issued Certificates
{{ issued }}
Pending Issue
{{ pending }}
Registered Domains
{{ domains|length }}

Recent Certificates

{% for c in certs %} {% endfor %} {% if not certs %} {% endif %}
Subject Domain Status Expires Actions
{{ c.subject }} {{ c.domain_name or '-' }} {{ c.status }} {{ c.expires_at[:10] if c.expires_at else '-' }} {% if c.status == 'issued' %} PEM PFX {% elif c.status == 'pending' %} {% endif %}
No certificates yet
{% endblock %}