-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
executable file
·172 lines (164 loc) · 6.44 KB
/
admin.php
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?php
include 'tpl/auth.php';
include 'tpl/sql.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>growTENT - Tracking Everything Non-Trivial :: Admin Portal</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Include the compiled Ratchet CSS -->
<link rel="stylesheet" href="ratchet-theme-ios.min.css">
<link rel="stylesheet" href="ratchet.min.css">
<link rel="stylesheet" href="app.css">
<!-- Include the compiled Ratchet JS -->
<!-- <script src="ratchet.js"></script> -->
</head>
<body>
<!-- Make sure all your bars are the first things in your <body> -->
<header class="bar bar-nav">
<a href="login.php?logout=true"><button class="btn btn-link btn-nav pull-left">
<span class="icon icon-left-nav"></span>
Log out
</button></a>
<h1 class="title">growTENT</h1>
</header>
<!-- Wrap all non-bar HTML in the .content div (this is actually what scrolls) -->
<div class="content">
<p class="content-padded" align="center">Skyman Industries seed to sale medicinal cannabis tracker & record book</p>
<p class="content-padded" align="center">Demo stock: 10 flowers, 10 vege, 5 seedlings, 10 seeds, 25lb drying, 12lb cured (Soon to be just plants).</p>
<div class="card">
<ul class="table-view">
<li class="table-view-cell">
<a class="navigate-right" href="admin_scanplant.php">
<strong>Scan plant</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_moveplant.php">
<strong>Move plants between areas</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_nutrients.php">
<strong>Lodge nutrient dosing</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_relabel.php">
<strong># Re-create label</strong>
</a>
</li>
<li class="table-view-divider"></li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_discrepancy.php">
<strong># Lodge discrepancy</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_harvest.php">
<strong># Harvest plant</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_updateplant.php">
<strong># Perform other plant status update</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_lodgepestcontrol.php">
<strong>Lodge pest control action</strong>
</a>
</li>
<li class="table-view-divider"></li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_inventory.php">
<strong>View current inventory</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_reporting.php">
<strong>View historical plants</strong>
</a>
</li>
<li class="table-view-divider"></li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_create_manifest.php">
<strong>Generate shipping manifest</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_amend_manifest.php">
<strong>Admend / complete manifest</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_recall.php">
<strong># Initiate recall</strong>
</a>
</li>
<li class="table-view-divider"></li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_addstarters.php">
<strong># Add new seeds / mothers to stock</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_newseason.php">
<strong>Start new season from seed</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_editseason.php">
<strong>Modify season details / wrap-up harvest</strong>
</a>
</li>
<li class="table-view-divider"></li>
<li class="table-view-divider"></li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_lodgedailysecuritycheck.php">
<strong># Lodge daily security check</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_lodge3mosecurityaudit.php">
<strong># Lodge quarterly security audit</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_lodgecalibration.php">
<strong># Lodge monthly sensor calibration</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_stocktake.php">
<strong># Lodge annual stocktake</strong>
</a>
</li>
<li class="table-view-divider"></li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_newdoc.php">
<strong>Add procedural document</strong>
</a>
</li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_viewdocs.php">
<strong>Review procedural documents</strong>
</a>
</li>
<li class="table-view-divider"></li>
<li class="table-view-cell">
<a class="navigate-right" href="admin_export.php">
<strong>Export / backups</strong>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>