This repository was archived by the owner on Apr 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarketing-analytics.php
More file actions
160 lines (155 loc) · 6.15 KB
/
marketing-analytics.php
File metadata and controls
160 lines (155 loc) · 6.15 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
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
<div class="section-heading">
<header>
<h1>Marketing Analytics <br/><small>Store Name</small>
</h1>
<?php include '_primary-nav.php'; ?>
</header>
<?php include '_secondary-nav.php'; ?>
</div>
<!-- /.section-heading -->
<!-- .section-body -->
<div class="section-body">
<!-- row 1 -->
<div class="panel panel-dashboard">
<div class="alert alert-yellow"><strong>Lemonade Buy One Free One Deal</strong></div>
<div class="table-responsive">
<table class="table tablesorter table-metrics">
<thead>
<th>Marketing Campaign</th>
<th>Walk-bys</th>
<th>Shoppers</th>
<th>Dwell Time</th>
<th>Total Sales</th>
</thead>
<tbody>
<tr>
<td>
<span class="store">Lemonade Buy 1 Free 1 Deal</span><br/>
</td>
<td class="up">
<span class="value">7740</span>
<span class="change down">-132% (-xx%)</span>
</td>
<td>
<span class="value">169</span>
<span class="change up">+5% (+xx%)</span>
</td>
<td>
<span class="value">55 mins</span>
<span class="change up">+5 (+xx%)</span>
</td>
<td>
<span class="value">RM 5,000</span>
<span class="change up">+RM3,000 (+xx%)</span>
</td>
</tr>
<!-- row -->
<tr>
<td>
<span class="store">Lunch Set Promo</span><br/>
</td>
<td class="down">
<span class="value">0</span>
<span class="change down">-6 (-xx%)</span>
</td>
<td class="down">
<span class="value">0</span>
<span class="change down">-0 (-xx%)</span>
</td>
<td>
<span class="value">55 mins</span>
<span class="change up">+5 (+xx%)</span>
</td>
<td>
<span class="value">RM 5,000</span>
<span class="change up">+RM3,000 (+xx%)</span>
</td>
</tr>
<!-- row -->
<tr>
<td>
<span class="store">Dinner Set Promo</span><br/>
</td>
<td>
<span class="value">3275</span>
<span class="change down">-380 (-xx%)</span>
</td>
<td>
<span class="value">134</span>
<span class="change down">-43 (-xx%)</span>
</td>
<td>
<span class="value">55 mins</span>
<span class="change up">+5 (+xx%)</span>
</td>
<td>
<span class="value">RM 5,000</span>
<span class="change up">+RM3,000 (+xx%)</span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- /row 1 -->
</div>
<!-- /.section-body -->
<!-- Select Stores Modal -->
<div class="modal fade modal-orange" id="select-stores-modal" tabindex="-1" role="dialog" aria-labelledby="selectStoresModal" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="select-stores-modal-label">Stores</h4>
</div>
<div class="modal-body">
<form>
<div class="form-group">
<select class="form-control selectpicker" data-style="btn-default">
<option>Store #1</option>
<option>Store #2</option>
<option>Store #3</option>
<option>Store #4</option>
</select>
</div>
</form>
<!-- Nav tabs -->
<!-- <ul class="nav nav-tabs nav-blue" role="tablist">
<li class="active"><a href="#select-stores-stores" role="tab" data-toggle="tab">Stores</a></li>
<li><a href="#select-stores-states" role="tab" data-toggle="tab">States</a></li>
<li><a href="#select-stores-groups" role="tab" data-toggle="tab">Groups</a></li>
</ul>
<br/> -->
<!-- Tab panes -->
<!-- <div class="tab-content">
<div class="tab-pane active" id="select-stores-stores">
<table class="table table-condensed">
<tr><td><div class="checkbox"><label><input type="checkbox"> Store</label></div></td></tr>
<tr><td><div class="checkbox"><label><input type="checkbox"> Store</label></div></td></tr>
<tr><td><div class="checkbox"><label><input type="checkbox"> Store</label></div></td></tr>
</table>
</div>
<div class="tab-pane" id="select-stores-states">
<table class="table table-condensed">
<tr><td><div class="checkbox"><label><input type="checkbox"> State</label></div></td></tr>
<tr><td><div class="checkbox"><label><input type="checkbox"> State</label></div></td></tr>
<tr><td><div class="checkbox"><label><input type="checkbox"> State</label></div></td></tr>
</table>
</div>
<div class="tab-pane" id="select-stores-groups">
<table class="table table-condensed">
<tr><td><div class="checkbox"><label><input type="checkbox"> Group</label></div></td></tr>
<tr><td><div class="checkbox"><label><input type="checkbox"> Group</label></div></td></tr>
<tr><td><div class="checkbox"><label><input type="checkbox"> Group</label></div></td></tr>
</table>
</div>
</div> -->
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-default">Select All</button>
<button type="button" class="btn btn-default">Clear All</button> -->
<button type="button" class="btn btn-primary">Submit</button>
</div>
</div>
</div>
</div>