-
Notifications
You must be signed in to change notification settings - Fork 0
/
report.html
65 lines (56 loc) · 2.52 KB
/
report.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
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Al-cashier Report Page</title>
<link rel="stylesheet" href="./css/libraries/all.min.css">
<link rel="stylesheet" href="./css/libraries/bootstrap.rtl.min.css">
<link rel="stylesheet" href="./css/master.css">
<script src="./js/layouts/isLoggedIn.js"></script>
<script src="./js/layouts/isAdmin.js"></script>
<script src="./js/libraries/chart.umd.js"></script>
<script src="./js/layouts/includeHTML.js"></script>
<script src="./js/layouts/reportTables.js"></script>
<script>
includeHTML('./components/navbar.html', 'nav', true);
const path = 'report';
</script>
</head>
<body id="report" class="report-page">
<!-- start navbar -->
<nav class="navbar p-0 sticky-top"></nav>
<!-- end navbar -->
<!-- start report options -->
<div class="container">
<section class="report">
<ul class="options list-unstyled m-0 pt-4 pb-3 d-flex overflow-auto">
<li class="m-0 me-3 p-0 rounded d-flex align-items-center justify-content-center active"
data-option="general" data-i18n="overview" role="button"></li>
<li class="m-0 me-3 p-0 rounded d-flex align-items-center justify-content-center"
data-option="done" data-i18n="done" role="button"></li>
<li class="m-0 me-3 p-0 rounded d-flex align-items-center justify-content-center"
data-option="canceled" data-i18n="canceled" role="button"></li>
<li class="m-0 me-3 p-0 rounded d-flex align-items-center justify-content-center"
data-option="runout" data-i18n="runout" role="button"></li>
<li class="m-0 me-3 p-0 rounded d-flex align-items-center justify-content-center"
data-option="cashier" data-i18n="cashier" role="button"></li>
</ul>
</section>
</div>
<!-- end report options -->
<!-- start report option details -->
<div class="container">
<section class="option-details"></section>
</div>
<!-- end report option details -->
<script src="./js/libraries/all.min.js"></script>
<script src="./js/libraries/bootstrap.bundle.min.js"></script>
<script src="./js/libraries/i18next.umd.min.js"></script>
<script type="module" src="./js/report.js"></script>
<script type="module" src="./js/layouts/slider.js"></script>
<script type="module" src="./js/layouts/mode.js"></script>
<script type="module" src="./js/i18n/i18next.js"></script>
<script src="./js/layouts/notification.js"></script>
</body>
</html>