parent
c83fffb05a
commit
9018f3d764
@ -1,40 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<title>测试成绩页</title>
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<link href="../static/bootstrap-4.3.1-dist/css/bootstrap.min.css" rel="stylesheet">
|
|
||||||
<script src="../static/jquery-3.3.1.min.js"></script>
|
|
||||||
<script src="../static/bootstrap-4.3.1-dist/js/bootstrap.min.js"></script>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="container">
|
|
||||||
<table class="table">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>学号</th>
|
|
||||||
<th>姓名</th>
|
|
||||||
<th>专业</th>
|
|
||||||
<th>科目</th>
|
|
||||||
<th>成绩</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
|
|
||||||
{% for result1 in result %}
|
|
||||||
<tr>
|
|
||||||
<td>{{ result1.id }}</td>
|
|
||||||
<td>{{ result1.name }}</td>
|
|
||||||
<td>{{ result1.major }}</td>
|
|
||||||
<td>{{ result1.subject }}</td>
|
|
||||||
<td>{{ result1.grade }}</td>
|
|
||||||
</tr>
|
|
||||||
{% endfor %}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Loading…
Reference in new issue