{% extends "base.html" %} {% block title %}HappyWedding{% endblock %} {% block content %} 分享链接 {{ link_rows|length }} 个 备注名(可选) 有效期(天) 创建分享链接 状态 备注 链接 过期时间 操作 {% for row in link_rows %} {% set link = row.link %} {{ row.status_label }} {{ link.label or '-' }} {{ row.public_url }} {{ link.expires_at.strftime('%Y-%m-%d %H:%M') if link.expires_at else '-' }} {% if not link.revoked_at %} 撤销 {% else %} - {% endif %} {% else %} 暂无分享链接 {% endfor %} {% endblock %}