{% extends "base.html" %} {% block title %}证书列表{% endblock %} {% block content %}

证书列表

创建证书
{% for cert in certificates %} {% else %} {% endfor %}
ID 通用名 CA机构 状态 有效期至 创建时间 操作
{{ cert.id }} {{ cert.common_name }} {{ cert.ca_name }} {% if cert.status == 'active' %} 有效 {% elif cert.status == 'revoked' %} 已吊销 {% else %} 已过期 {% endif %} {{ cert.expires_at.strftime('%Y-%m-%d') }} {{ cert.created_at.strftime('%Y-%m-%d') }}
详情 {% if cert.status == 'active' %} 吊销 {% endif %} 导出
暂无证书
{% endblock %}