-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstarter-admin.html
More file actions
490 lines (458 loc) · 23.4 KB
/
starter-admin.html
File metadata and controls
490 lines (458 loc) · 23.4 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Type some info">
<meta name="description" content="Final CSS (finalcss) is a utility-first and component library for building modern websites without leaving your HTML"/>
<meta property="og:description" content="Final CSS is a utility-first and component library for building modern websites without leaving your HTML"/>
<meta name="twitter:description" content="Final CSS is a utility-first and component library for building modern websites without leaving your HTML"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="author" content="Final CSS">
<title>Final CSS - Example Admin template (finalcss.com)</title>
<script type="text/javascript">
// Check localStorage for saved theme and assign that
const htmlElement = document.documentElement;
const savedTheme = localStorage.getItem('site-theme');
if (savedTheme) {
htmlElement.setAttribute('data-theme', savedTheme);
}
function themeSwitcher() {
const currentTheme = htmlElement.getAttribute('data-theme');
const newTheme = currentTheme === 'light' || !currentTheme ? 'dark' : 'light';
// Set the new theme on the body element
htmlElement.setAttribute('data-theme', newTheme);
// Save the new theme in localStorage
localStorage.setItem('site-theme', newTheme);
}
</script>
<script>
function open_dialog(dialog_id){
document.getElementById(dialog_id).showModal();
}
// Show the dialog when the page loads
document.addEventListener('DOMContentLoaded', (event) => {
// Clone sidebar menu into dialog for mobile view
const nav_aside = document.getElementById("nav_aside");
const mobile_nav_container = document.getElementById("mobile_nav_container");
const cloned_nav_aside = nav_aside.cloneNode(true); // Deep clone (includes children)
mobile_nav_container.appendChild(cloned_nav_aside);
//Optional: Close the dialog if the user clicks outside of it (backdrop click)
document.addEventListener("click", (event) => {
if (event.target === document.querySelector('dialog')) { // Check if the backdrop was clicked
document.querySelector('dialog').close();
}
});
});
</script>
<!-- FinalCSS -->
<link href="css/final.css" rel="stylesheet" type="text/css" />
</head>
<body>
<dialog id="dialog_menu_mobile" class="dialog p-1 max-w-100">
<div class="dialog-body p-3">
<button class="btn-close-dialog" onclick="document.getElementById('dialog_menu_mobile').close()"> ✕ </button>
<h5>Final CSS</h5>
<hr>
<style>
#mobile_nav_container .nav-link:not(:hover){ background:var(--neutral-100); }
</style>
<nav id="mobile_nav_container"> </nav>
</div>
</dialog>
<div class="lg:d-flex w-100% min-h-100vh">
<aside class="d-none lg:d-block bg-neutral-100 border-right flex-grow-0 flex-shrink-0 lg:w-55 w-40">
<header class="d-flex align-items-center px-3 border-bottom h-14">
<a href="https://finalcss.com" class="text-xl font-semibold m-0">Final CSS</a>
</header>
<nav class="p-2">
<ul class="nav nav-col" id="nav_aside">
<li><a class="nav-link active" href="#">Dashboard</a></li>
<li><a class="nav-link" href="#">Orders</a></li>
<li><a class="nav-link" href="#">Invoices</a></li>
<li><a class="nav-link" href="#">Finance</a></li>
<li><a class="nav-link" href="#">Products</a></li>
<li><a class="nav-link" href="#">Reports</a></li>
<li><a class="nav-link" href="#">Settings</a></li>
</ul>
</nav>
</aside>
<main class="flex-grow">
<header class="d-flex p-3 lg:px-5 align-items-center border-bottom h-14">
<button class="btn btn-default btn-icon mr-3 lg:d-none" onclick="open_dialog('dialog_menu_mobile')">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none">
<path d="M4 5L20 5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M4 12L20 12" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M4 19L20 19" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</button>
<h5 class="m-0 text-xl">Dashboard </h5>
<div class="d-flex align-items-center gap-2 ml-auto">
<a class="btn btn-primary" href="#">Create</a>
<button onclick="themeSwitcher()" class="btn btn-icon btn-default">
<span class="d-none dark:d-block">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-sun"><circle cx="12" cy="12" r="4"/><path d="M12 2v2"/><path d="M12 20v2"/><path d="m4.93 4.93 1.41 1.41"/><path d="m17.66 17.66 1.41 1.41"/><path d="M2 12h2"/><path d="M20 12h2"/><path d="m6.34 17.66-1.41 1.41"/><path d="m19.07 4.93-1.41 1.41"/></svg>
</span>
<span class="dark:d-none">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-moon"><path d="M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z"/></svg>
</span>
</button>
<a href="#" class="btn rounded-circle btn-neutral btn-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20" fill="#000" color="var(--neutral-600)">
<path d="M17.8063 14.8372C17.9226 14.9064 18.0663 14.9875 18.229 15.0793C18.9418 15.4814 20.0193 16.0893 20.7575 16.8118C21.2191 17.2637 21.6578 17.8592 21.7375 18.5888C21.8223 19.3646 21.4839 20.0927 20.8048 20.7396C19.6334 21.8556 18.2276 22.75 16.4093 22.75H7.59104C5.77274 22.75 4.36695 21.8556 3.1955 20.7396C2.51649 20.0927 2.17802 19.3646 2.26283 18.5888C2.34257 17.8592 2.78123 17.2637 3.2429 16.8118C3.98106 16.0893 5.05857 15.4814 5.77139 15.0793C5.93404 14.9875 6.07773 14.9064 6.19404 14.8372C9.74809 12.7209 14.2523 12.7209 17.8063 14.8372Z" fill="currentColor" />
<path d="M6.75018 6.5C6.75018 3.6005 9.10068 1.25 12.0002 1.25C14.8997 1.25 17.2502 3.6005 17.2502 6.5C17.2502 9.39949 14.8997 11.75 12.0002 11.75C9.10068 11.75 6.75018 9.39949 6.75018 6.5Z" fill="currentColor" />
</svg>
</a>
</div>
</header>
<section class="p-3 lg:p-5">
<div class="d-grid grid-template-cols-1 grid-template-cols-2 lg:grid-template-cols-4 gap-5 w-100%">
<article class="card bg-blue-100 border-0">
<div class="card-body">
<h4 class="text-xl">1,300.00</h4>
<p class="mb-3">Consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.</p>
<a href="#" class="btn btn-sm btn-outline">View report</a>
</div>
</article>
<article class="card bg-green-100 border-0">
<div class="card-body">
<h4 class="text-xl">340.00</h4>
<p class="mb-3">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut </p>
<a href="#" class="btn btn-sm btn-outline">View report</a>
</div>
</article>
<article class="card bg-orange-100 border-0">
<div class="card-body">
<h4 class="text-xl">$140.00</h4>
<p class="mb-3">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt </p>
<a href="#" class="btn btn-sm btn-outline">View report</a>
</div>
</article>
<article class="card bg-purple-100 border-0">
<div class="card-body">
<h4 class="text-xl">$2,990.00</h4>
<p class="mb-3">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt</p>
<a href="#" class="btn btn-sm btn-outline">View report</a>
</div>
</article>
</div> <!-- grid.// -->
<header class="mt-6 mb-4">
<h5 class="mb-4 text-xl">Latest orders</h5>
<div class="d-flex flex-row max-sm:flex-col gap-3">
<nav class="segmented-control">
<label class="segmented-item active">
All orders
</label>
<label class="segmented-item">
Pending
</label>
<label class="segmented-item">
Confirmed
</label>
</nav>
<form class="lg:ml-auto d-flex gap-2">
<input class="form-control min-w-20" type="search" placeholder="Search item" name="">
<button class="btn btn-default">Search</button>
</form>
</div>
</header>
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th>Order ID</th>
<th>Date</th>
<th>Order by</th>
<th>Status</th>
<th class="text-right">Total sum</th>
<th class="text-right">Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="d-flex text-primary align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none"><use href="#icon-delivery-table"/></svg>
<a href="#" class="font-medium ml-2">192001</a>
</div>
</td>
<td>
<span>July 12, 2024</span>
</td>
<td>Alex John</td>
<td>
<b role="status" class="badge badge-green">
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 -960 960 960" fill="currentColor"><path d="M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z"/></svg>
Completed
</b>
</td>
<td class="text-right"> <b class="text-sm text-muted">USD</b> 312,231.00</td>
<td class="text-right"> <a href="#" class="btn btn-default btn-sm">View detail</a> </td>
</tr>
<tr>
<td>
<div class="d-flex text-primary align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none"><use href="#icon-delivery-table"/></svg>
<a href="#" class="font-medium ml-2">234232</a>
</div>
</td>
<td>
<span>July 12, 2024</span>
</td>
<td>Alex John</td>
<td>
<b role="status" class="badge badge-orange">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20" color="currentColor" fill="none"> <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="2" /> <path d="M12 8V12L14 14" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> </svg>
Pending
</b>
</td>
<td class="text-right"> <b class="text-sm text-muted">USD</b> 1,912,902.99</td>
<td class="text-right"> <a href="#" class="btn btn-default btn-sm">View detail</a> </td>
</tr>
<tr>
<td>
<div class="d-flex text-primary align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none"><use href="#icon-delivery-table"/></svg>
<a href="#" class="font-medium ml-2">192001</a>
</div>
</td>
<td>
<span>July 12, 2024</span>
</td>
<td>Michael George</td>
<td>
<b role="status" class="badge badge-orange">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20" color="currentColor" fill="none"> <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="2" />
<path d="M12 8V12L14 14" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /></svg>
Pending
</b>
</td>
<td class="text-right"> <b class="text-sm text-muted">USD</b> 12,450.00</td>
<td class="text-right"> <a href="#" class="btn btn-default btn-sm">View detail</a> </td>
</tr>
<tr>
<td>
<div class="d-flex text-primary align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none"><use href="#icon-delivery-table"/></svg>
<a href="#" class="font-medium ml-2">192001</a>
</div>
</td>
<td>
<span>July 12, 2024</span>
</td>
<td>Alex John</td>
<td>
<b role="status" class="badge badge-red">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20" color="currentColor" fill="none">
<path d="M19.0005 4.99988L5.00049 18.9999M5.00049 4.99988L19.0005 18.9999" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
Rejected
</b>
</td>
<td class="text-right"> <b class="text-sm text-muted">USD</b> 12,450.00</td>
<td class="text-right"> <a href="#" class="btn btn-default btn-sm">View detail</a> </td>
</tr>
<tr>
<td>
<div class="d-flex text-primary align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none"><use href="#icon-delivery-table"/></svg>
<a href="#" class="font-medium ml-2">192001</a>
</div>
</td>
<td>
<span>July 12, 2024</span>
</td>
<td>Alex John</td>
<td>
<b role="status" class="badge badge-green">
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 -960 960 960" fill="currentColor"><path d="M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z"/></svg>
Completed
</b>
</td>
<td class="text-right"> <b class="text-sm text-muted">USD</b> 12,450.00</td>
<td class="text-right"> <a href="#" class="btn btn-default btn-sm">View detail</a> </td>
</tr>
<tr>
<td>
<div class="d-flex text-primary align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none"><use href="#icon-delivery-table"/></svg>
<a href="#" class="font-medium ml-2">192001</a>
</div>
</td>
<td>
<span>July 12, 2024</span>
</td>
<td>Alex John</td>
<td>
<b role="status" class="badge badge-neutral">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20" color="currentColor" fill="none">
<path d="M13 21.5V21C13 18.1716 13 16.7574 13.8787 15.8787C14.7574 15 16.1716 15 19 15H19.5M20 13.3431V10C20 6.22876 20 4.34315 18.8284 3.17157C17.6569 2 15.7712 2 12 2C8.22877 2 6.34315 2 5.17157 3.17157C4 4.34314 4 6.22876 4 10L4 14.5442C4 17.7892 4 19.4117 4.88607 20.5107C5.06508 20.7327 5.26731 20.9349 5.48933 21.1139C6.58831 22 8.21082 22 11.4558 22C12.1614 22 12.5141 22 12.8372 21.886C12.9044 21.8623 12.9702 21.835 13.0345 21.8043C13.3436 21.6564 13.593 21.407 14.0919 20.9081L18.8284 16.1716C19.4065 15.5935 19.6955 15.3045 19.8478 14.9369C20 14.5694 20 14.1606 20 13.3431Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
Draft
</b>
</td>
<td class="text-right"> <b class="text-sm text-muted">USD</b> 12,450.00</td>
<td class="text-right"> <a href="#" class="btn btn-default btn-sm">View detail</a> </td>
</tr>
<tr>
<td>
<div class="d-flex text-primary align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none"><use href="#icon-delivery-table"/></svg>
<a href="#" class="font-medium ml-2">192001</a>
</div>
</td>
<td>
<span>July 12, 2024</span>
</td>
<td>Alex John</td>
<td>
<b role="status" class="badge badge-neutral">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20" color="currentColor" fill="none">
<path d="M13 21.5V21C13 18.1716 13 16.7574 13.8787 15.8787C14.7574 15 16.1716 15 19 15H19.5M20 13.3431V10C20 6.22876 20 4.34315 18.8284 3.17157C17.6569 2 15.7712 2 12 2C8.22877 2 6.34315 2 5.17157 3.17157C4 4.34314 4 6.22876 4 10L4 14.5442C4 17.7892 4 19.4117 4.88607 20.5107C5.06508 20.7327 5.26731 20.9349 5.48933 21.1139C6.58831 22 8.21082 22 11.4558 22C12.1614 22 12.5141 22 12.8372 21.886C12.9044 21.8623 12.9702 21.835 13.0345 21.8043C13.3436 21.6564 13.593 21.407 14.0919 20.9081L18.8284 16.1716C19.4065 15.5935 19.6955 15.3045 19.8478 14.9369C20 14.5694 20 14.1606 20 13.3431Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
Draft
</b>
</td>
<td class="text-right"> <b class="text-sm text-muted">USD</b> 12,450.00</td>
<td class="text-right"> <a href="#" class="btn btn-default btn-sm">View detail</a> </td>
</tr>
<tr>
<td>
<div class="d-flex text-primary align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none"><use href="#icon-delivery-table"/></svg>
<a href="#" class="font-medium ml-2">192001</a>
</div>
</td>
<td>
<span>July 12, 2024</span>
</td>
<td>Alex John</td>
<td>
<b role="status" class="badge badge-green">
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 -960 960 960" fill="currentColor"><path d="M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z"/></svg>
Completed
</b>
</td>
<td class="text-right"> <b class="text-sm text-muted">USD</b> 12,450.00</td>
<td class="text-right"> <a href="#" class="btn btn-default btn-sm">View detail</a> </td>
</tr>
<tr>
<td>
<div class="d-flex text-primary align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none"><use href="#icon-delivery-table"/></svg>
<a href="#" class="font-medium ml-2">192001</a>
</div>
</td>
<td>
<span>July 12, 2024</span>
</td>
<td>Alex John</td>
<td>
<b role="status" class="badge badge-green">
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 -960 960 960" fill="currentColor"><path d="M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z"/></svg>
Completed
</b>
</td>
<td class="text-right"> <b class="text-sm text-muted">USD</b> 12,450.00</td>
<td class="text-right"> <a href="#" class="btn btn-default btn-sm">View detail</a> </td>
</tr>
<tr>
<td>
<div class="d-flex text-primary align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none"><use href="#icon-delivery-table"/></svg>
<a href="#" class="font-medium ml-2">192001</a>
</div>
</td>
<td>
<span>July 12, 2024</span>
</td>
<td>Alex John</td>
<td>
<b role="status" class="badge badge-green">
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 -960 960 960" fill="currentColor"><path d="M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z"/></svg>
Completed
</b>
</td>
<td class="text-right"> <b class="text-sm text-muted">USD</b> 12,450.00</td>
<td class="text-right"> <a href="#" class="btn btn-default btn-sm">View detail</a> </td>
</tr>
<tr>
<td>
<div class="d-flex text-primary align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none"><use href="#icon-delivery-table"/></svg>
<a href="#" class="font-medium ml-2">192001</a>
</div>
</td>
<td>
<span>July 12, 2024</span>
</td>
<td>Alex John</td>
<td>
<b role="status" class="badge badge-green">
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 -960 960 960" fill="currentColor"><path d="M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z"/></svg>
Completed
</b>
</td>
<td class="text-right"> <b class="text-sm text-muted">USD</b> 12,450.00</td>
<td class="text-right"> <a href="#" class="btn btn-default btn-sm">View detail</a> </td>
</tr>
<tr>
<td>
<div class="d-flex text-primary align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none"><use href="#icon-delivery-table"/></svg>
<a href="#" class="font-medium ml-2">192001</a>
</div>
</td>
<td>
<span>July 12, 2024</span>
</td>
<td>Alex John</td>
<td>
<b role="status" class="badge badge-green">
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 -960 960 960" fill="currentColor"><path d="M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z"/></svg>
Completed
</b>
</td>
<td class="text-right"> <b class="text-sm text-muted">USD</b> 12,450.00</td>
<td class="text-right"> <a href="#" class="btn btn-default btn-sm">View detail</a> </td>
</tr>
<tr>
<td>
<div class="d-flex text-primary align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="currentColor" fill="none"><use href="#icon-delivery-table"/></svg>
<a href="#" class="font-medium ml-2">192001</a>
</div>
</td>
<td>
<span>July 12, 2024</span>
</td>
<td>Alex John</td>
<td>
<b role="status" class="badge badge-green">
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 -960 960 960" fill="currentColor"><path d="M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z"/></svg>
Completed
</b>
</td>
<td class="text-right"> <b class="text-sm text-muted">USD</b> 12,450.00</td>
<td class="text-right"> <a href="#" class="btn btn-default btn-sm">View detail</a> </td>
</tr>
</tbody>
</table>
</div>
</section>
</main>
</div>
<!-- icons used in content -->
<svg xmlns="http://www.w3.org/2000/svg" style="display: none">
<symbol id="icon-delivery-table">
<path d="M19.5 17.5C19.5 18.8807 18.3807 20 17 20C15.6193 20 14.5 18.8807 14.5 17.5C14.5 16.1193 15.6193 15 17 15C18.3807 15 19.5 16.1193 19.5 17.5Z" stroke="currentColor" stroke-width="1.5" />
<path d="M9.5 17.5C9.5 18.8807 8.38071 20 7 20C5.61929 20 4.5 18.8807 4.5 17.5C4.5 16.1193 5.61929 15 7 15C8.38071 15 9.5 16.1193 9.5 17.5Z" stroke="currentColor" stroke-width="1.5" />
<path d="M14.5 17.5H9.5M19.5 17.5H22V13C22 9.41015 19 6.5 15 6.5M15 16V5C15 4.44772 14.5523 4 14 4H3C2.44772 4 2 4.44772 2 5V16.4954C2 17.0495 2.45053 17.4979 3.00461 17.4954L4.5 17.4885" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</symbol>
</svg>
</body>
</html>