-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.html
More file actions
66 lines (59 loc) · 1.83 KB
/
database.html
File metadata and controls
66 lines (59 loc) · 1.83 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html>
<head>
<title>My Inventory | Repricing Console</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome.min.css">
<style>
body {
padding-left:5px;
padding-right:5px;
}
.header {
padding:10px;
}
.header button{
margin-left:5px;
}
</style>
<script src="js/jquery-2.1.0.min.js"></script>
<script src="js/underscore-min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="lib/database.js"></script>
</head>
<body>
<div class="header">
<span>Currently known database</span>
<button id="loadItems" type="button" class="btn btn-primary btn-sm">Load items from Amazon</button>
<button id="updateCompetitors" type="button" class="btn btn-primary btn-sm">Update Competitors Prices</button>
<button id="applyDefaultMargin" type="button" class="btn btn-primary btn-sm">Apply Default Margin</button>
<button id="applyDefaultShipping" type="button" class="btn btn-primary btn-sm">Apply Default Shipping</button>
<button id="resetDb" type="button" class="btn btn-primary btn-sm">Reset Database</button>
<button id="options" type="button" class="btn btn-primary btn-sm">Open Options</button> <img src="images/loader.gif" id="loader" style="vertical-align:text-top; display:none;">
</div>
<div>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>#</th>
<th>ASIN/ISBN</th>
<th>SKU</th>
<th>Name</th>
<th>Fulfilled By</th>
<th>Condition</th>
<th>Your Price</th>
<th>Lowest Competitor</th>
<th>Original</th>
<th>Shipping</th>
<th>Margin</th>
<th>Minimum</th>
<th>New Price</th>
</tr>
</thead>
<tbody id="db">
</tbody>
</table>
</div>
</body>
</html>