sixth commit

main
Lyanling 1 month ago
parent 68697e557d
commit 875b4ae9cf

@ -1,75 +1,40 @@
<!--&lt;!&ndash;<!DOCTYPE html>&ndash;&gt;--> <!DOCTYPE html>
<!--&lt;!&ndash;<html lang="en">&ndash;&gt;--> <html lang="en">
<!--&lt;!&ndash;<head>&ndash;&gt;--> <head>
<!--&lt;!&ndash; <meta charset="UTF-8">&ndash;&gt;--> <meta charset="UTF-8">
<!--&lt;!&ndash; <title>确认点名</title>&ndash;&gt;--> <title>确认点名</title>
<!--&lt;!&ndash;</head>&ndash;&gt;--> </head>
<!--&lt;!&ndash;<body>&ndash;&gt;--> <body>
<!--&lt;!&ndash;<form method="post">&ndash;&gt;--> <form method="post">
<!--&lt;!&ndash; {% csrf_token %}&ndash;&gt;--> {% csrf_token %}
<!--&lt;!&ndash; <h2>确认点名学生:</h2>&ndash;&gt;--> <h2>确认点名学生:</h2>
<!--&lt;!&ndash; <p>姓名: {{ student.name }}</p>&ndash;&gt;--> <p>姓名: {{ student.name }}</p>
<!--&lt;!&ndash; <p>学号: {{ student.student_id }}</p>&ndash;&gt;--> <p>学号: {{ student.student_id }}</p>
<!--&lt;!&ndash; <label for="attended">是否到达课堂:</label>&ndash;&gt;--> <label for="attended">是否到达课堂:</label>
<!--&lt;!&ndash; <input type="checkbox" name="attended" id="attended">&ndash;&gt;--> <input type="checkbox" name="attended" id="attended">
<!--&lt;!&ndash; <label for="question_repeat">是否准确重复问题:</label>&ndash;&gt;--> <label for="question_repeat">是否准确重复问题:</label>
<!--&lt;!&ndash; <select name="question_repeat" id="question_repeat">&ndash;&gt;--> <select name="question_repeat" id="question_repeat">
<!--&lt;!&ndash; <option value="inaccurate">不准确</option>&ndash;&gt;--> <option value="inaccurate">不准确</option>
<!--&lt;!&ndash; <option value="accurate">准确</option>&ndash;&gt;--> <option value="accurate">准确</option>
<!--&lt;!&ndash; </select>&ndash;&gt;--> </select>
<!--&lt;!&ndash; <label for="answer_accuracy">回答问题准确性:</label>&ndash;&gt;--> <label for="answer_accuracy">回答问题准确性:</label>
<!--&lt;!&ndash; <select name="answer_accuracy" id="answer_accuracy">&ndash;&gt;--> <select name="answer_accuracy" id="answer_accuracy">
<!--&lt;!&ndash; <option value="0">0分 - 未回答准确</option>&ndash;&gt;--> <option value="0">0分 - 未回答准确</option>
<!--&lt;!&ndash; <option value="0.5">0.5分 - 回答部分正确</option>&ndash;&gt;--> <option value="0.5">0.5分 - 回答部分正确</option>
<!--&lt;!&ndash; <option value="1.5">1.5分 - 回答大部分正确</option>&ndash;&gt;--> <option value="1.5">1.5分 - 回答大部分正确</option>
<!--&lt;!&ndash; <option value="3">3分 - 完全正确</option>&ndash;&gt;--> <option value="3">3分 - 完全正确</option>
<!--&lt;!&ndash; </select>&ndash;&gt;--> </select>
<!--&lt;!&ndash; <button type="submit">确认并提交</button>&ndash;&gt;--> <button type="submit">确认并提交</button>
<!--&lt;!&ndash;</form>&ndash;&gt;--> </form>
<!--&lt;!&ndash;</body>&ndash;&gt;--> {% if protection_awarded %}
<!--&lt;!&ndash;</html>&ndash;&gt;--> <p>该学生获得保护权自动加2分</p>
<!--<!DOCTYPE html>--> {% endif %}
<!--<html lang="en">-->
<!--<head>--> </body>
<!-- <meta charset="UTF-8">--> </html>
<!-- <title>确认点名</title>-->
<!--</head>-->
<!--<body>-->
<!--<form method="post">-->
<!-- {% csrf_token %}-->
<!-- <h2>确认点名学生:</h2>-->
<!-- <p>姓名: {{ student.name }}</p>-->
<!-- <p>学号: {{ student.student_id }}</p>-->
<!-- <label for="attended">是否到达课堂:</label>-->
<!-- <input type="checkbox" name="attended" id="attended">-->
<!-- <label for="question_repeat">是否准确重复问题:</label>-->
<!-- <select name="question_repeat" id="question_repeat">-->
<!-- <option value="inaccurate">不准确</option>-->
<!-- <option value="accurate">准确</option>-->
<!-- </select>-->
<!-- <label for="answer_accuracy">回答问题准确性:</label>-->
<!-- <select name="answer_accuracy" id="answer_accuracy">-->
<!-- <option value="0">0分 - 未回答准确</option>-->
<!-- <option value="0.5">0.5分 - 回答部分正确</option>-->
<!-- <option value="1.5">1.5分 - 回答大部分正确</option>-->
<!-- <option value="3">3分 - 完全正确</option>-->
<!-- </select>-->
<!-- <button type="submit">确认并提交</button>-->
<!--</form>-->
<!--{% if protection_awarded %}-->
<!--<p>该学生获得保护权自动加2分</p>-->
<!--{% endif %}-->
<!--</body>-->
<!--</html>-->

@ -1,27 +1,27 @@
<!--<!DOCTYPE html>--> <!DOCTYPE html>
<!--<html>--> <html>
<!--<head>--> <head>
<!-- <title>积分排行榜</title>--> <title>积分排行榜</title>
<!--</head>--> </head>
<!--<body>--> <body>
<!-- <h1>积分排行榜</h1>--> <h1>积分排行榜</h1>
<!-- <table border="1">--> <table border="1">
<!-- <tr>--> <tr>
<!-- <th>排名</th>--> <th>排名</th>
<!-- <th>学号</th>--> <th>学号</th>
<!-- <th>姓名</th>--> <th>姓名</th>
<!-- <th>积分</th>--> <th>积分</th>
<!-- <th>到课次数</th>--> <th>到课次数</th>
<!-- </tr>--> </tr>
<!-- {% for student in students %}--> {% for student in students %}
<!-- <tr>--> <tr>
<!-- <td>{{ forloop.counter }}</td> &lt;!&ndash; 使用forloop.counter显示排名 &ndash;&gt;--> <td>{{ forloop.counter }}</td> <!-- 使用forloop.counter显示排名 -->
<!-- <td>{{ student.student_id }}</td>--> <td>{{ student.student_id }}</td>
<!-- <td>{{ student.name }}</td>--> <td>{{ student.name }}</td>
<!-- <td>{{ student.score }}</td>--> <td>{{ student.score }}</td>
<!-- <td>{{ student.attendance_count }}</td>--> <td>{{ student.attendance_count }}</td>
<!-- </tr>--> </tr>
<!-- {% endfor %}--> {% endfor %}
<!-- </table>--> </table>
<!--</body>--> </body>
<!--</html>--> </html>

@ -1,15 +1,15 @@
<!--<!DOCTYPE html>--> <!DOCTYPE html>
<!--<html lang="en" xmlns="http://www.w3.org/1999/html">--> <html lang="en" xmlns="http://www.w3.org/1999/html">
<!--<head>--> <head>
<!-- <meta charset="UTF-8">--> <meta charset="UTF-8">
<!-- <title>登录</title>--> <title>登录</title>
<!--</head>--> </head>
<!--<body>--> <body>
<!--<form action="/polls/index/" method="post">--> <form action="/polls/index/" method="post">
<!-- {% csrf_token %}--> {% csrf_token %}
<!--<p><label>用户名:</label><input name="user"/></p>--> <p><label>用户名:</label><input name="user"/></p>
<!--<p><label>密码:</label><input name="pwd"/></p>--> <p><label>密码:</label><input name="pwd"/></p>
<!-- <input type="submit" value="提交">--> <input type="submit" value="提交">
<!--</form>--> </form>
<!--</body>--> </body>
<!--</html>--> </html>

@ -1,15 +1,15 @@
<!--<!DOCTYPE html>--> <!DOCTYPE html>
<!--<html lang="en">--> <html lang="en">
<!--<head>--> <head>
<!-- <meta charset="UTF-8">--> <meta charset="UTF-8">
<!-- <title>注册</title>--> <title>注册</title>
<!--</head>--> </head>
<!--<body>--> <body>
<!--<form action="/polls/register/" method="post">--> <form action="/polls/register/" method="post">
<!-- {% csrf_token %}--> {% csrf_token %}
<!-- <p><label>用户名:</label><input name="user"/></p>--> <p><label>用户名:</label><input name="user"/></p>
<!-- <p><label>密码:</label><input name="pwd"/></p>--> <p><label>密码:</label><input name="pwd"/></p>
<!-- <input type="submit" value="注册">--> <input type="submit" value="注册">
<!--</form>--> </form>
<!--</body>--> </body>
<!--</html>--> </html>

@ -1,22 +1,4 @@
<!--<!DOCTYPE html>-->
<!--<html lang="en">-->
<!--<head>-->
<!-- <meta charset="UTF-8">-->
<!-- <title>随机点名</title>-->
<!--</head>-->
<!--<body>-->
<!--<form method="post">-->
<!-- {% csrf_token %}-->
<!-- <button type="submit" name="start_roll_call">开始点名</button>-->
<!--</form>-->
<!--{% if selected_student %}-->
<!-- <h2>被选中的学生:</h2>-->
<!-- <p>姓名: {{ selected_student.name }}</p>-->
<!-- <p>学号: {{ selected_student.student_id }}</p>-->
<!--{% endif %}-->
<!--</body>-->
<!--</html>-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>

@ -1,15 +1,15 @@
<!--<!DOCTYPE html>--> <!DOCTYPE html>
<!--<html lang="en">--> <html lang="en">
<!--<head>--> <head>
<!-- <meta charset="UTF-8">--> <meta charset="UTF-8">
<!-- <title>Title</title>--> <title>Title</title>
<!--</head>--> </head>
<!--<body>--> <body>
<!--<form method="post" enctype="multipart/form-data">--> <form method="post" enctype="multipart/form-data">
<!-- {% csrf_token %}--> {% csrf_token %}
<!-- {{ form.as_p }}--> {{ form.as_p }}
<!-- <button type="submit">上传学生名单</button>--> <button type="submit">上传学生名单</button>
<!--</form>--> </form>
<!--</body>--> </body>
<!--</html>--> </html>

@ -1,18 +1,11 @@
import requests import requests
url = 'http://127.0.0.1:8000/polls/index/' url = 'http://127.0.0.1:8000/polls/index/'
data = { data = {
'user': 'zmm', 'user': 'zmm',
'pwd': 'Zmm' 'pwd': 'Zmm'
} }
response = requests.post(url, data=data) response = requests.post(url, data=data)
#
if response.status_code == 200: if response.status_code == 200:
print("登录成功:", response.json()) print("登录成功:", response.json())
else: else:

Loading…
Cancel
Save