-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchild3.html
37 lines (36 loc) · 1.14 KB
/
child3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>请假记录</title>
<style type="text/css">
body {
background-image: url(http://i2.tiimg.com/693758/8e248b97c4eec1cc.jpg)
}
</style>
{% load staticfiles %}<script src="{% static 'JS/jquery.js' %}" type="text/javascript"></script>
{% load staticfiles %}<script src="{% static 'JS/jquery.cookie.js' %}" type="text/javascript"></script>
</head>
<body>
<!--下面是请假记录。获取到用户的请假记录后,通过表格形式来展示。-->
<form action="/child3/" method="post">{% csrf_token %}
<div align="center">
<h2><font color="#FF00FF">请假记录</font></h2>
<table border="1">
<tr>
<td width="200">请假日期</td>
/*<td width="200">请假时间</td>*/
</tr>
<tr>
<td width="200">
{{eventdate}}
</td>
<td width="200">
{{hours}}
</td>
</tr>
</table>
</div>
</form>
</body>
</html>