18 lines
568 B
HTML
18 lines
568 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Result</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', path='styles.css') }}">
|
|
</head>
|
|
<body>
|
|
<h1>{{ scale_title }} </h1>
|
|
<!-- <h2>您的结果如下:</h2> -->
|
|
<ul>
|
|
{% for key, value in responses.items() %}
|
|
<li>{{ key }}: 在 {{ranges[key][0]}} 到 {{ranges[key][1]}} 的量表中得分 {{ value }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html> |