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

证书列表

共 {{ total }} 个证书
创建证书
{% 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 %}

暂无证书记录

创建证书
{% if total_pages > 1 %} {% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}