Files
eamilsystemv2torn3u/app/templates/email_list.html
huangzhenpc 8b29dd701b xf
2025-03-05 14:11:54 +08:00

37 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>邮件列表</title>
<style>
body { font-family: Arial, sans-serif; margin: 20px; }
.email-list { list-style: none; padding: 0; }
.email-item {
border: 1px solid #ddd;
margin: 10px 0;
padding: 10px;
border-radius: 4px;
}
.email-item:hover { background-color: #f5f5f5; }
.email-subject { font-weight: bold; }
.email-meta { color: #666; font-size: 0.9em; }
a { text-decoration: none; color: inherit; }
</style>
</head>
<body>
<h1>邮件列表</h1>
<ul class="email-list">
{% for email in emails %}
<li class="email-item">
<a href="{{ url_for('view_email_page', message_id=email.message_id) }}">
<div class="email-subject">{{ email.subject }}</div>
<div class="email-meta">
发件人: {{ email.sender }} |
收件人: {{ email.recipients|join(', ') }} |
时间: {{ email.timestamp }}
</div>
</a>
</li>
{% endfor %}
</ul>
</body>
</html>