27 lines
685 B
HTML
27 lines
685 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Conversation Table</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Conversation Table</h1>
|
||
|
<table border="1">
|
||
|
<tr>
|
||
|
<th>ID</th>
|
||
|
<th>Message</th>
|
||
|
<!-- 添加其他列标题 -->
|
||
|
</tr>
|
||
|
{% for conversation in conversations %}
|
||
|
<tr>
|
||
|
<td>{{ conversation[0] }}</td>
|
||
|
<td>{{ conversation[1] }}</td>
|
||
|
<!-- 添加其他列数据 -->
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|