47 lines
1.5 KiB
HTML
47 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Message List</title>
|
||
|
|
<!-- Bootstrap CSS -->
|
||
|
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
||
|
|
<style>
|
||
|
|
.content-box {
|
||
|
|
max-width: 800px;
|
||
|
|
margin: 50px auto;
|
||
|
|
padding: 20px;
|
||
|
|
border: 1px solid #ddd;
|
||
|
|
border-radius: 5px;
|
||
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="content-box">
|
||
|
|
<div>
|
||
|
|
<h1>Summary</h1>
|
||
|
|
{{ answer }}
|
||
|
|
</div>
|
||
|
|
<div class="message-list">
|
||
|
|
<h1>Messages</h1>
|
||
|
|
|
||
|
|
{% for message in messages %}
|
||
|
|
<div class="message">
|
||
|
|
<h5>{{ message.subject }}</h5>
|
||
|
|
<p><strong>From:</strong> {{ message.from }}</p>
|
||
|
|
<p><strong>To:</strong> {{ message.to }}</p>
|
||
|
|
<p><strong>Date:</strong> {{ message.date }}</p>
|
||
|
|
<p>{{ message.text }}</p>
|
||
|
|
<hr>
|
||
|
|
</div>
|
||
|
|
{% endfor %}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<!-- Bootstrap JS and dependencies -->
|
||
|
|
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
||
|
|
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
|
||
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|