Files
youdu-devops-learn/templates/user_list.html
2025-11-12 10:57:01 +08:00

31 lines
779 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>用户信息管理</title>
</head>
<body>
<h2>用户信息管理</h2>
<table border="1">
<thead>
<tr>
<th>姓名</th>
<th>城市</th>
<th>性别</th>
<th>年龄</th>
</tr>
</thead>
<tbody>
{% for i in users %}
<tr>
<td>{{ i.name }}</td>
<td>{{ i.city }}</td>
<td>{{ i.sex }}</td>
<td>{{ i.age }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<button><a href="/myapp/user_add" target="_blank">创建用户</a></button>
</body>
</html>