forked from wsl20308/CRM-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_score_view.html
53 lines (47 loc) · 1.38 KB
/
check_score_view.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="{% static 'thanos/bootstrap-3.3.7-dist/css/bootstrap.min.css' %}">
<title>查看个人成绩</title>
<style>
/* 调节按钮样式 */
ul {
list-style: none;
}
ul a {
margin: 5px 0;
}
#chart{
width: 800px;
height: 400px;
}
</style>
</head>
<body>
<div class="container">
<div class="page-header">
<h2>所在班级</h2>
</div>
<ul id="classList" sid="{{ stu_id }}">
{% for class_obj in class_list %}
<li cid="{{ class_obj.pk }}"><a class="btn btn-primary">{{ class_obj }}</a></li>
{% endfor %}
</ul>
<div class="page-header">
<h2>成绩图表</h2>
</div>
<div id="chart">
<!-- 图表 -->
</div>
</div>
<script src="{% static 'thanos/jquery-3.2.1.min.js' %}"></script>
<script src="{% static 'thanos/bootstrap-3.3.7-dist/js/bootstrap.min.js' %}"></script>
<script src="{% static 'highcharts.js' %}"></script>
<script src="{% static 'js/check_score_view.js' %}"></script>
</body>
</html>