{% extends "base.html" %} {% block title %}证书列表{% endblock %} {% block content %}
| 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') }} | ||
|
暂无证书记录 创建证书 |
|||||||