HTML
xxxxxxxxxx
1
2
<div class="container my-4">
3
<p>
4
<strong>Admin dashboard templates enable you to quickly create admin panels. Copy & paste examples straight into
5
your code.</strong>
6
</p>
7
8
<p>Click the red <button href="https://mdbootstrap.com/docs/standard/templates/admin-dashboard/"
9
class="btn btn-danger btn-sm">DOCS</button>
10
button in the upper left corner, in order to find more examples of Admin Dashboards, or go directly to:</p>
11
12
<ul>
13
<li><a href="https://mdbootstrap.com/docs/standard/design-blocks/admin/">Premium Admin Design Blocks</a></li>
14
<li><a href="https://mdbootstrap.com/docs/standard/templates/admin-dashboard/">Premium Admin Templates</a></li>
15
</ul>
16
17
<p><strong>You will find the link to FREE ADMIN TEMPLATE DOWNLOAD at the bottom of this snippet.</strong></p>
18
19
<hr />
20
21
<h5 class="font-weight-bold mt-5">Basic example of Admin eCommerce Section for Bootstrap 5 </h5>
22
<p>Admin Design Blocks & Templates for Bootstrap 5 are included in the <a
23
href="https://mdbootstrap.com/docs/standard/pro/">MDB
24
PRO UI Kit</a> - use code <code>admin</code> to get <strong>30% OFF</strong> and start using the most
25
efficient Admin components for bootstrap.</p>
26
<div class="border p-5 mb-5">
27
<!-- Copy this code to have a working example -->
28
<!--Section: Product & date-->
29
<section>
30
<div class="row">
31
<div class="col-md-4 mb-4">
32
<div class="card">
33
<div class="card-body">
34
<select class="select">
35
<option value="1">Product 1</option>
36
<option value="2">Product 2</option>
37
<option value="3">Product 3</option>
38
<option value="4">Product 4</option>
39
<option value="5">Product 5</option>
40
</select>
41
<label class="form-label select-label">Product</label>
42
</div>
43
</div>
44
</div>
45
46
<div class="col-md-8 mb-4">
47
<div class="card">
48
<div class="card-body">
49
<div class="row">
50
<div class="col-md-6 mb-4 mb-md-0">
51
<select class="select">
52
<option value="1">Today</option>
53
<option value="2">Yesterday</option>
54
<option value="3" selected>Last 7 days</option>
55
<option value="4">Last 28 days</option>
56
<option value="5">Last 90 days</option>
57
</select>
58
<label class="form-label select-label">Date</label>
59
</div>
60
61
<div class="col-md-6">
62
<div class="form-outline datepicker">
63
<input type="text" class="form-control" id="exampleDatepicker1" value="Custom date"
64
data-toggle="datepicker" />
65
<label for="exampleDatepicker1" class="form-label">Date</label>
66
</div>
67
</div>
68
</div>
69
</div>
70
</div>
71
</div>
72
</div>
73
</section>
74
<!--Section: Product & date-->
75
76
<!--Section: Sales Performance KPIs-->
77
<section class="mb-4">
78
<div class="card">
79
<div class="card-header text-center py-3 bg-light border-0">
80
<strong>Sales Performance KPIs</strong>
81
</div>
82
<div class="card-body">
83
<div class="table-responsive">
84
<table class="table table-hover text-nowrap">
85
<thead>
86
<tr>
87
<th scope="col"></th>
88
<th scope="col">Product Detail Views</th>
89
<th scope="col">Unique Purchases</th>
90
<th scope="col">Quantity</th>
91
<th scope="col">Product Revenue</th>
92
<th scope="col">Avg. Price</th>
93
</tr>
94
</thead>
95
<tbody>
96
<tr>
97
<th scope="row">Value</th>
98
<td>18,492</td>
99
<td>228</td>
100
<td>350</td>
101
<td>$4,787.64</td>
102
<td>$13.68</td>
103
</tr>
104
<tr>
105
<th scope="row">Percentage change</th>
106
<td>
107
<span class="text-danger">
108
<i class="fas fa-caret-down me-1"></i><span>-48.8%%</span>
109
</span>
110
</td>
111
<td>
112
<span class="text-success">
113
<i class="fas fa-caret-up me-1"></i><span>14.0%</span>
114
</span>
115
</td>
116
<td>
117
<span class="text-success">
118
<i class="fas fa-caret-up me-1"></i><span>46.4%</span>
119
</span>
120
</td>
121
<td>
122
<span class="text-success">
123
<i class="fas fa-caret-up me-1"></i><span>29.6%</span>
124
</span>
125
</td>
126
<td>
127
<span class="text-danger">
128
<i class="fas fa-caret-down me-1"></i><span>-11.5%</span>
129
</span>
130
</td>
131
</tr>
132
<tr>
133
<th scope="row">Absolute change</th>
134
<td>
135
<span class="text-danger">
136
<i class="fas fa-caret-down me-1"></i><span>-17,654</span>
137
</span>
138
</td>
139
<td>
140
<span class="text-success">
141
<i class="fas fa-caret-up me-1"></i><span>28</span>
142
</span>
143
</td>
144
<td>
145
<span class="text-success">
146
<i class="fas fa-caret-up me-1"></i><span>111</span>
147
</span>
148
</td>
149
<td>
150
<span class="text-success">
151
<i class="fas fa-caret-up me-1"></i><span>$1,092.72</span>
152
</span>
153
</td>
154
<td>
155
<span class="text-danger">
156
<i class="fas fa-caret-down me-1"></i><span>$-1.78</span>
157
</span>
158
</td>
159
</tr>
160
</tbody>
161
</table>
162
</div>
163
</div>
164
</div>
165
</section>
166
<!--Section: Sales Performance KPIs-->
167
168
<!--Section: Shopping Funnel & Product revenue-->
169
<section class="mb-4">
170
<div class="row">
171
<div class="col-md-5 mb-4">
172
<div class="card">
173
<div class="card-header text-center border-0 bg-light py-3">
174
<strong>Shopping Funnel</strong>
175
</div>
176
<div class="card-body">
177
<div id="chart-shopping-funnel"></div>
178
</div>
179
</div>
180
</div>
181
182
<div class="col-md-7 mb-4">
183
<div class="card">
184
<div class="card-body">
185
<div id="chart-product-revenue"></div>
186
</div>
187
</div>
188
</div>
189
</div>
190
</section>
191
<!--Section: Shopping Funnel & Product revenue-->
192
<!--/ Copy this code to have a working example -->
193
</div>
194
195
<h5 class="font-weight-bold mt-5">Free templates</h5>
196
<p>We have released the Admin Templates Pack for the previous Bootstrap 4 version for free.</p>
197
<p>We also invite you to checkt out the Free Bootstrap 5 templates.</p>
198
<a href="https://mdbootstrap.com/freebies/" class="btn btn-danger btn-block"><i
199
class="fas fa-download me-2"></i>Free Bootstrap 5 templates - no registration required</a>
200
<a href="https://mdbootstrap.com/freebies/jquery/admin-dashboard/" class="btn btn-info btn-block"><i
201
class="fas fa-download me-2"></i>Free Admin Template for Bootstrap 4 - registration required</a>
202
203
</div>
CSS
xxxxxxxxxx
1
@media (min-width: 1400px) {
2
main,
3
header,
4
#main-navbar {
5
padding-left: 240px;
6
}
7
}
8
9
/* To remove */
10
.table > thead > tr > th {
11
border-bottom-width: 2px;
12
}
13
.table > :not(:last-child) > :last-child > * {
14
border-bottom-color: inherit;
15
}
JS
xxxxxxxxxx
1
2
<!-- Funnel chart -->
3
<script>
4
const optionsFunnelChart = {
5
dataLabelsPlugin: true,
6
options: {
7
scales: {
8
xAxes: [
9
{
10
gridLines: {
11
offsetGridLines: true,
12
},
13
},
14
],
15
},
16
legend: {
17
display: false,
18
},
19
plugins: {
20
datalabels: {
21
formatter: (value, ctx) => {
22
let sum = 0;
23
let dataArr = dataBarHorizontal.data.datasets[0].data;
24
dataArr.map((data) => {
25
sum += data;
26
});
27
let percentage = ((value * 100) / sum).toFixed(2) + "%";
28
return percentage;
29
},
30
color: "#4f4f4f",
31
labels: {
32
title: {
33
font: {
34
size: "13",
35
},
36
anchor: "end",
37
align: "right",
38
},
39
},
40
},
41
},
42
},
43
};
44
45
// Chart
46
const dataBarHorizontal = {
47
type: "horizontalBar",
48
data: {
49
labels: ["Product views", "Checkout", "Purchases"],
50
datasets: [
51
{
52
data: [2112, 343, 45],
53
barPercentage: 1.24,
54
},
55
],
56
},
57
};
58
59
new mdb.Chart(
60
document.getElementById("chart-shopping-funnel"),
61
dataBarHorizontal,
62
optionsFunnelChart
63
);
64
</script>
65
66
<!-- Chart product revenue -->
67
<script>
68
const optionsRevenueChart = {
69
options: {
70
scales: {
71
yAxes: [
72
{
73
display: true,
74
position: "left",
75
id: "y-axis-1",
76
ticks: {
77
beginAtZero: true,
78
callback: function (value, index, values) {
79
return "$" + value;
80
},
81
},
82
},
83
{
84
display: true,
85
position: "right",
86
id: "y-axis-2",
87
gridLines: {
88
drawOnChartArea: false,
89
},
90
ticks: {
91
beginAtZero: true,
92
},
93
},
94
],
95
},
96
},
97
};
98
99
const dataProductRevenueChart = {
100
type: "bar",
101
data: {
102
labels: [
103
"Monday",
104
"Tuesday",
105
"Wednesday",
106
"Thursday",
107
"Friday",
108
"Saturday",
109
"Sunday ",
110
],
111
datasets: [
112
{
113
label: "Product revenue $",
114
yAxisID: "y-axis-1",
115
data: [211, 234, 254, 342, 236, 198, 98],
116
order: 2,
117
},
118
{
119
label: "Unique purchases",
120
yAxisID: "y-axis-2",
121
data: [52, 42, 69, 60, 45, 23, 89],
122
type: "line",
123
order: 1,
124
backgroundColor: "rgba(66, 133, 244, 0.0)",
125
borderColor: "#94DFD7",
126
borderWidth: 2,
127
pointBorderColor: "#94DFD7",
128
pointBackgroundColor: "#94DFD7",
129
lineTension: 0.0,
130
},
131
],
132
},
133
};
134
135
new mdb.Chart(
136
document.getElementById("chart-product-revenue"),
137
dataProductRevenueChart,
138
optionsRevenueChart
139
);
140
</script>
141
142
Console errors: 0