parent
7664ba5ad6
commit
d06633e14d
@ -0,0 +1,23 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="zh">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
||||||
|
<title>随机点名系统</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<h1>随机点名系统</h1>
|
||||||
|
{% if student %}
|
||||||
|
<p>被抽中的学生: <strong>{{ student.name }}</strong> (学号: <strong>{{ student.id }}</strong>)</p>
|
||||||
|
<p>当前积分: <strong>{{ student.points }}</strong></p>
|
||||||
|
{% endif %}
|
||||||
|
<div class="button-group">
|
||||||
|
<a href="{{ url_for('call_student') }}" class="btn">抽点</a>
|
||||||
|
<a href="{{ url_for('ask_question') }}" class="btn">抽问</a>
|
||||||
|
<a href="{{ url_for('rankings') }}" class="btn">积分排名</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in new issue