forked from luyuting/Scholarship
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice_admin.php
More file actions
36 lines (36 loc) · 814 Bytes
/
practice_admin.php
File metadata and controls
36 lines (36 loc) · 814 Bytes
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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>社会实践奖学金</title>
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/practice_admin.css" />
<script src="js/ajax_table.js"></script>
<script src="js/practice_admin.js"></script>
</head>
<body>
<?php include('nav_admin.php');?>
<div class="main-box">
<div id="practice_admin" class="main-table">
<center>
<table class="table">
<thead>
<tr>
<th></th>
<th>项目</th>
<th>内容</th>
<th>分数</th>
</tr>
</thead>
<tbody id="practice_admin_info">
<tr>
<td><input type="checkbox"/></td>
<td>社区挂职</td>
<td>5</td>
</tr>
</tbody>
</table>
</center>
</div>
</div>
</body>
</html>