-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.html
More file actions
38 lines (30 loc) · 718 Bytes
/
edit.html
File metadata and controls
38 lines (30 loc) · 718 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
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>edit test</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/jquery.min.js"></script>
<script src="js/setup.js"></script>
<script>
var test_list_options = {
RowEndHTML: function(data) {
return '<td><a href="edit/?id=' +data.id+ '"><input type="button" value="edit"/></a></td>';
}
};
</script>
<script src="js/test_list.js"></script>
</head>
<body>
<!-- Page navigation -->
<div class='pageNav'>
<a href='./'>testing</a>
<a>edit tests</a>
</div>
<!-- Contents -->
<h1>edit test</h1>
<table id='test_list'></table>
<input type='button' value='done' class='backBtn'/>
<span id='ajaxStatus'></span>
</body>
</html>