-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathindex.pug
589 lines (585 loc) · 29.2 KB
/
index.pug
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
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
extends ../_layout/default.pug
block styles
link(href='node_modules/@coreui/chartjs/dist/css/coreui-chartjs.css', rel='stylesheet')
block scripts
if !starter
// Plugins and scripts required by this view
script(src='node_modules/chart.js/dist/chart.umd.js')
script(src='node_modules/@coreui/chartjs/dist/js/coreui-chartjs.js')
script(src='node_modules/@coreui/utils/dist/umd/index.js')
script(src='js/main.js')
block breadcrumb
+breadcrumb(
[
{ href: '#', label: 'Home'},
{ label: 'Dashboard'}
]
)
block view
.row.g-4.mb-4
.col-sm-6.col-xl-3
.card.text-white.bg-primary
.card-body.pb-0.d-flex.justify-content-between.align-items-start
div
.fs-4.fw-semibold 26K
span.fs-6.fw-normal (-12.4%
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-arrow-bottom")
| )
div Users
.dropdown
button.btn.btn-transparent.text-white.p-0(type='button', data-coreui-toggle='dropdown', aria-haspopup='true', aria-expanded='false')
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-options")
|
.dropdown-menu.dropdown-menu-end
a.dropdown-item(href='#') Action
a.dropdown-item(href='#') Another action
a.dropdown-item(href='#') Something else here
.c-chart-wrapper.mt-3.mx-3(style='height:70px;')
canvas#card-chart1.chart(height='70')
// /.col
.col-sm-6.col-xl-3
.card.text-white.bg-info
.card-body.pb-0.d-flex.justify-content-between.align-items-start
div
.fs-4.fw-semibold $6.200
span.fs-6.fw-normal (40.9%
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-arrow-top")
| )
div Income
.dropdown
button.btn.btn-transparent.text-white.p-0(type='button', data-coreui-toggle='dropdown', aria-haspopup='true', aria-expanded='false')
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-options")
.dropdown-menu.dropdown-menu-end
a.dropdown-item(href='#') Action
a.dropdown-item(href='#') Another action
a.dropdown-item(href='#') Something else here
.c-chart-wrapper.mt-3.mx-3(style='height:70px;')
canvas#card-chart2.chart(height='70')
// /.col
.col-sm-6.col-xl-3
.card.text-white.bg-warning
.card-body.pb-0.d-flex.justify-content-between.align-items-start
div
.fs-4.fw-semibold 2.49%
span.fs-6.fw-normal (84.7%
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-arrow-top")
| )
div Conversion Rate
.dropdown
button.btn.btn-transparent.text-white.p-0(type='button', data-coreui-toggle='dropdown', aria-haspopup='true', aria-expanded='false')
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-options")
.dropdown-menu.dropdown-menu-end
a.dropdown-item(href='#') Action
a.dropdown-item(href='#') Another action
a.dropdown-item(href='#') Something else here
.c-chart-wrapper.mt-3(style='height:70px;')
canvas#card-chart3.chart(height='70')
// /.col
.col-sm-6.col-xl-3
.card.text-white.bg-danger
.card-body.pb-0.d-flex.justify-content-between.align-items-start
div
.fs-4.fw-semibold 44K
span.fs-6.fw-normal (-23.6%
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-arrow-bottom")
| )
div Sessions
.dropdown
button.btn.btn-transparent.text-white.p-0(type='button', data-coreui-toggle='dropdown', aria-haspopup='true', aria-expanded='false')
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-options")
.dropdown-menu.dropdown-menu-end
a.dropdown-item(href='#') Action
a.dropdown-item(href='#') Another action
a.dropdown-item(href='#') Something else here
.c-chart-wrapper.mt-3.mx-3(style='height:70px;')
canvas#card-chart4.chart(height='70')
// /.col
// /.row
.card.mb-4
.card-body
.d-flex.justify-content-between
div
h4.card-title.mb-0 Traffic
.small.text-body-secondary January - July 2023
.btn-toolbar.d-none.d-md-block(role='toolbar' aria-label='Toolbar with buttons')
.btn-group.btn-group-toggle.mx-3(data-coreui-toggle='buttons')
input.btn-check#option1(type='radio', name='options', autocomplete='off')
label.btn.btn-outline-secondary
| Day
input.btn-check#option2(type='radio', name='options', autocomplete='off', checked='')
label.btn.btn-outline-secondary.active
| Month
input.btn-check#option3(type='radio', name='options', autocomplete='off')
label.btn.btn-outline-secondary
| Year
button.btn.btn-primary(type='button')
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-cloud-download")
.c-chart-wrapper(style='height:300px;margin-top:40px;')
canvas#main-chart.chart(height='300')
.card-footer
.row.row-cols-1.row-cols-sm-2.row-cols-lg-4.row-cols-xl-5.g-4.mb-2.text-center
.col
.text-body-secondary Visits
.fw-semibold.text-truncate 29.703 Users (40%)
.progress.progress-thin.mt-2
.progress-bar.bg-success(role='progressbar', style='width: 40%', aria-valuenow='40', aria-valuemin='0', aria-valuemax='100')
.col
.text-body-secondary Unique
.fw-semibold.text-truncate 24.093 Users (20%)
.progress.progress-thin.mt-2
.progress-bar.bg-info(role='progressbar', style='width: 20%', aria-valuenow='20', aria-valuemin='0', aria-valuemax='100')
.col
.text-body-secondary Pageviews
.fw-semibold.text-truncate 78.706 Views (60%)
.progress.progress-thin.mt-2
.progress-bar.bg-warning(role='progressbar', style='width: 60%', aria-valuenow='60', aria-valuemin='0', aria-valuemax='100')
.col
.text-body-secondary New Users
.fw-semibold.text-truncate 22.123 Users (80%)
.progress.progress-thin.mt-2
.progress-bar.bg-danger(role='progressbar', style='width: 80%', aria-valuenow='80', aria-valuemin='0', aria-valuemax='100')
.col.d-none.d-xl-block
.text-body-secondary Bounce Rate
.fw-semibold.text-truncate 40.15%
.progress.progress-thin.mt-2
.progress-bar(role='progressbar', style='width: 40%', aria-valuenow='40', aria-valuemin='0', aria-valuemax='100')
// /.card
.row.g-4.mb-4
.col-sm-6.col-lg-4
.card(style='--cui-card-cap-bg: #3b5998')
.card-header.position-relative.d-flex.justify-content-center.align-items-center
svg.icon.icon-3xl.text-white.my-4
use(xlink:href="node_modules/@coreui/icons/sprites/brand.svg#cib-facebook-f")
.chart-wrapper.position-absolute.top-0.start-0.w-100.h-100
canvas#social-box-chart-1(height='90')
.card-body.row.text-center
.col
.fs-5.fw-semibold 89k
.text-uppercase.text-body-secondary.small friends
.vr
.col
.fs-5.fw-semibold 459
.text-uppercase.text-body-secondary.small feeds
// /.col
.col-sm-6.col-lg-4
.card(style='--cui-card-cap-bg: #00aced')
.card-header.position-relative.d-flex.justify-content-center.align-items-center
svg.icon.icon-3xl.text-white.my-4
use(xlink:href="node_modules/@coreui/icons/sprites/brand.svg#cib-twitter")
.chart-wrapper.position-absolute.top-0.start-0.w-100.h-100
canvas#social-box-chart-2(height='90')
.card-body.row.text-center
.col
.fs-5.fw-semibold 973k
.text-uppercase.text-body-secondary.small followers
.vr
.col
.fs-5.fw-semibold 1.792
.text-uppercase.text-body-secondary.small tweets
// /.col
.col-sm-6.col-lg-4
.card(style='--cui-card-cap-bg: #4875b4')
.card-header.position-relative.d-flex.justify-content-center.align-items-center
svg.icon.icon-3xl.text-white.my-4
use(xlink:href="node_modules/@coreui/icons/sprites/brand.svg#cib-linkedin")
.chart-wrapper.position-absolute.top-0.start-0.w-100.h-100
canvas#social-box-chart-3(height='90')
.card-body.row.text-center
.col
.fs-5.fw-semibold 500+
.text-uppercase.text-body-secondary.small contacts
.vr
.col
.fs-5.fw-semibold 292
.text-uppercase.text-body-secondary.small feeds
// /.col
// /.row
.row
.col-md-12
.card.mb-4
.card-header
| Traffic & Sales
.card-body
.row
.col-sm-6
.row
.col-6
.border-start.border-start-4.border-start-info.px-3.mb-3
.small.text-body-secondary.text-truncate New Clients
.fs-5.fw-semibold 9.123
// /.col
.col-6
.border-start.border-start-4.border-start-danger.px-3.mb-3
.small.text-body-secondary.text-truncate Recuring Clients
.fs-5.fw-semibold 22.643
// /.col
// /.row
hr.mt-0
.progress-group.mb-4
.progress-group-prepend
span.text-body-secondary.small
| Monday
.progress-group-bars
.progress.progress-thin
.progress-bar.bg-info(role='progressbar', style='width: 34%', aria-valuenow='34', aria-valuemin='0', aria-valuemax='100')
.progress.progress-thin
.progress-bar.bg-danger(role='progressbar', style='width: 78%', aria-valuenow='78', aria-valuemin='0', aria-valuemax='100')
.progress-group.mb-4
.progress-group-prepend
span.text-body-secondary.small
| Tuesday
.progress-group-bars
.progress.progress-thin
.progress-bar.bg-info(role='progressbar', style='width: 56%', aria-valuenow='56', aria-valuemin='0', aria-valuemax='100')
.progress.progress-thin
.progress-bar.bg-danger(role='progressbar', style='width: 94%', aria-valuenow='94', aria-valuemin='0', aria-valuemax='100')
.progress-group.mb-4
.progress-group-prepend
span.text-body-secondary.small
| Wednesday
.progress-group-bars
.progress.progress-thin
.progress-bar.bg-info(role='progressbar', style='width: 12%', aria-valuenow='12', aria-valuemin='0', aria-valuemax='100')
.progress.progress-thin
.progress-bar.bg-danger(role='progressbar', style='width: 67%', aria-valuenow='67', aria-valuemin='0', aria-valuemax='100')
.progress-group.mb-4
.progress-group-prepend
span.text-body-secondary.small
| Thursday
.progress-group-bars
.progress.progress-thin
.progress-bar.bg-info(role='progressbar', style='width: 43%', aria-valuenow='43', aria-valuemin='0', aria-valuemax='100')
.progress.progress-thin
.progress-bar.bg-danger(role='progressbar', style='width: 91%', aria-valuenow='91', aria-valuemin='0', aria-valuemax='100')
.progress-group.mb-4
.progress-group-prepend
span.text-body-secondary.small
| Friday
.progress-group-bars
.progress.progress-thin
.progress-bar.bg-info(role='progressbar', style='width: 22%', aria-valuenow='22', aria-valuemin='0', aria-valuemax='100')
.progress.progress-thin
.progress-bar.bg-danger(role='progressbar', style='width: 73%', aria-valuenow='73', aria-valuemin='0', aria-valuemax='100')
.progress-group.mb-4
.progress-group-prepend
span.text-body-secondary.small
| Saturday
.progress-group-bars
.progress.progress-thin
.progress-bar.bg-info(role='progressbar', style='width: 53%', aria-valuenow='53', aria-valuemin='0', aria-valuemax='100')
.progress.progress-thin
.progress-bar.bg-danger(role='progressbar', style='width: 82%', aria-valuenow='82', aria-valuemin='0', aria-valuemax='100')
.progress-group.mb-4
.progress-group-prepend
span.text-body-secondary.small
| Sunday
.progress-group-bars
.progress.progress-thin
.progress-bar.bg-info(role='progressbar', style='width: 9%', aria-valuenow='9', aria-valuemin='0', aria-valuemax='100')
.progress.progress-thin
.progress-bar.bg-danger(role='progressbar', style='width: 69%', aria-valuenow='69', aria-valuemin='0', aria-valuemax='100')
// /.col
.col-sm-6
.row
.col-6
.border-start.border-start-4.border-start-warning.px-3.mb-3
.small.text-body-secondary.text-truncate Pageviews
.fs-5.fw-semibold 78.623
// /.col
.col-6
.border-start.border-start-4.border-start-success.px-3.mb-3
.small.text-body-secondary.text-truncate Organic
.fs-5.fw-semibold 49.123
// /.col
// /.row
hr.mt-0
.progress-group
.progress-group-header
svg.icon.icon-lg.me-2
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-user")
div Male
.ms-auto.fw-semibold 43%
.progress-group-bars
.progress.progress-thin
.progress-bar.bg-warning(role='progressbar', style='width: 43%', aria-valuenow='43', aria-valuemin='0', aria-valuemax='100')
.progress-group.mb-5
.progress-group-header
svg.icon.icon-lg.me-2
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-user-female")
div Female
.ms-auto.fw-semibold 37%
.progress-group-bars
.progress.progress-thin
.progress-bar.bg-warning(role='progressbar', style='width: 43%', aria-valuenow='43', aria-valuemin='0', aria-valuemax='100')
.progress-group
.progress-group-header
svg.icon.icon-lg.me-2
use(xlink:href="node_modules/@coreui/icons/sprites/brand.svg#cib-google")
div Organic Search
.ms-auto.fw-semibold.me-2 191.235
.text-body-secondary.small (56%)
.progress-group-bars
.progress.progress-thin
.progress-bar.bg-success(role='progressbar', style='width: 56%', aria-valuenow='56', aria-valuemin='0', aria-valuemax='100')
.progress-group
.progress-group-header
svg.icon.icon-lg.me-2
use(xlink:href="node_modules/@coreui/icons/sprites/brand.svg#cib-facebook-f")
div Facebook
.ms-auto.fw-semibold.me-2 51.223
.text-body-secondary.small (15%)
.progress-group-bars
.progress.progress-thin
.progress-bar.bg-success(role='progressbar', style='width: 15%', aria-valuenow='15', aria-valuemin='0', aria-valuemax='100')
.progress-group
.progress-group-header
svg.icon.icon-lg.me-2
use(xlink:href="node_modules/@coreui/icons/sprites/brand.svg#cib-twitter")
div Twitter
.ms-auto.fw-semibold.me-2 37.564
.text-body-secondary.small (11%)
.progress-group-bars
.progress.progress-thin
.progress-bar.bg-success(role='progressbar', style='width: 11%', aria-valuenow='11', aria-valuemin='0', aria-valuemax='100')
.progress-group
.progress-group-header
svg.icon.icon-lg.me-2
use(xlink:href="node_modules/@coreui/icons/sprites/brand.svg#cib-linkedin")
div LinkedIn
.ms-auto.fw-semibold.me-2 27.319
.text-body-secondary.small (8%)
.progress-group-bars
.progress.progress-thin
.progress-bar.bg-success(role='progressbar', style='width: 8%', aria-valuenow='8', aria-valuemin='0', aria-valuemax='100')
// /.col
// /.row
br
.table-responsive
table.table.border.mb-0
thead.fw-semibold.text-nowrap
tr.align-middle
th.bg-body-secondary.text-center
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-people")
th.bg-body-secondary User
th.bg-body-secondary.text-center Country
th.bg-body-secondary Usage
th.bg-body-secondary.text-center Payment Method
th.bg-body-secondary Activity
th.bg-body-secondary
tbody
tr.align-middle
td.text-center
.avatar.avatar-md
img.avatar-img(src='assets/img/avatars/1.jpg', alt='user@email.com')
span.avatar-status.bg-success
td
.text-nowrap Yiorgos Avraamu
.small.text-body-secondary.text-nowrap
span New
| | Registered: Jan 1, 2023
td.text-center
svg.icon.icon-xl
use(xlink:href="node_modules/@coreui/icons/sprites/flag.svg#cif-us")
td
.d-flex.justify-content-between.align-items-baseline
.fw-semibold 50%
.text-nowrap.small.text-body-secondary.ms-3 Jun 11, 2023 - Jul 10, 2023
.progress.progress-thin
.progress-bar.bg-success(role='progressbar', style='width: 50%', aria-valuenow='50', aria-valuemin='0', aria-valuemax='100')
td.text-center
svg.icon.icon-xl
use(xlink:href="node_modules/@coreui/icons/sprites/brand.svg#cib-cc-mastercard")
td
.small.text-body-secondary Last login
.fw-semibold.text-nowrap 10 sec ago
td
.dropdown
button.btn.btn-transparent.p-0(type='button', data-coreui-toggle='dropdown', aria-haspopup='true', aria-expanded='false')
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-options")
.dropdown-menu.dropdown-menu-end
a.dropdown-item(href='#') Info
a.dropdown-item(href='#') Edit
a.dropdown-item.text-danger(href='#') Delete
tr.align-middle
td.text-center
.avatar.avatar-md
img.avatar-img(src='assets/img/avatars/2.jpg', alt='user@email.com')
span.avatar-status.bg-danger
td
.text-nowrap Avram Tarasios
.small.text-body-secondary.text-nowrap
span Recurring
| | Registered: Jan 1, 2023
td.text-center
svg.icon.icon-xl
use(xlink:href="node_modules/@coreui/icons/sprites/flag.svg#cif-br")
td
.d-flex.justify-content-between.align-items-baseline
.fw-semibold 10%
.text-nowrap.small.text-body-secondary.ms-3 Jun 11, 2023 - Jul 10, 2023
.progress.progress-thin
.progress-bar.bg-info(role='progressbar', style='width: 10%', aria-valuenow='10', aria-valuemin='0', aria-valuemax='100')
td.text-center
svg.icon.icon-xl
use(xlink:href="node_modules/@coreui/icons/sprites/brand.svg#cib-cc-visa")
td
.small.text-body-secondary Last login
.fw-semibold.text-nowrap 5 minutes ago
td
.dropdown
button.btn.btn-transparent.p-0(type='button', data-coreui-toggle='dropdown', aria-haspopup='true', aria-expanded='false')
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-options")
.dropdown-menu.dropdown-menu-end
a.dropdown-item(href='#') Info
a.dropdown-item(href='#') Edit
a.dropdown-item.text-danger(href='#') Delete
tr.align-middle
td.text-center
.avatar.avatar-md
img.avatar-img(src='assets/img/avatars/3.jpg', alt='user@email.com')
span.avatar-status.bg-warning
td
.text-nowrap Quintin Ed
.small.text-body-secondary.text-nowrap
span New
| | Registered: Jan 1, 2023
td.text-center
svg.icon.icon-xl
use(xlink:href="node_modules/@coreui/icons/sprites/flag.svg#cif-in")
td
.d-flex.justify-content-between.align-items-baseline
.fw-semibold 74%
.text-nowrap.small.text-body-secondary.ms-3 Jun 11, 2023 - Jul 10, 2023
.progress.progress-thin
.progress-bar.bg-warning(role='progressbar', style='width: 74%', aria-valuenow='74', aria-valuemin='0', aria-valuemax='100')
td.text-center
svg.icon.icon-xl
use(xlink:href="node_modules/@coreui/icons/sprites/brand.svg#cib-cc-stripe")
td
.small.text-body-secondary Last login
.fw-semibold.text-nowrap 1 hour ago
td
.dropdown
button.btn.btn-transparent.p-0(type='button', data-coreui-toggle='dropdown', aria-haspopup='true', aria-expanded='false')
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-options")
.dropdown-menu.dropdown-menu-end
a.dropdown-item(href='#') Info
a.dropdown-item(href='#') Edit
a.dropdown-item.text-danger(href='#') Delete
tr.align-middle
td.text-center
.avatar.avatar-md
img.avatar-img(src='assets/img/avatars/4.jpg', alt='user@email.com')
span.avatar-status.bg-secondary
td
.text-nowrap Enéas Kwadwo
.small.text-body-secondary.text-nowrap
span New
| | Registered: Jan 1, 2023
td.text-center
svg.icon.icon-xl
use(xlink:href="node_modules/@coreui/icons/sprites/flag.svg#cif-fr")
td
.d-flex.justify-content-between.align-items-baseline
.fw-semibold 98%
.text-nowrap.small.text-body-secondary.ms-3 Jun 11, 2023 - Jul 10, 2023
.progress.progress-thin
.progress-bar.bg-danger(role='progressbar', style='width: 98%', aria-valuenow='98', aria-valuemin='0', aria-valuemax='100')
td.text-center
svg.icon.icon-xl
use(xlink:href="node_modules/@coreui/icons/sprites/brand.svg#cib-cc-paypal")
td
.small.text-body-secondary Last login
.fw-semibold.text-nowrap Last month
td
.dropdown
button.btn.btn-transparent.p-0(type='button', data-coreui-toggle='dropdown', aria-haspopup='true', aria-expanded='false')
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-options")
.dropdown-menu.dropdown-menu-end
a.dropdown-item(href='#') Info
a.dropdown-item(href='#') Edit
a.dropdown-item.text-danger(href='#') Delete
tr.align-middle
td.text-center
.avatar.avatar-md
img.avatar-img(src='assets/img/avatars/5.jpg', alt='user@email.com')
span.avatar-status.bg-success
td
.text-nowrap Agapetus Tadeáš
.small.text-body-secondary.text-nowrap
span New
| | Registered: Jan 1, 2023
td.text-center
svg.icon.icon-xl
use(xlink:href="node_modules/@coreui/icons/sprites/flag.svg#cif-es")
td
.d-flex.justify-content-between.align-items-baseline
.fw-semibold 22%
.text-nowrap.small.text-body-secondary.ms-3 Jun 11, 2023 - Jul 10, 2023
.progress.progress-thin
.progress-bar.bg-info(role='progressbar', style='width: 22%', aria-valuenow='22', aria-valuemin='0', aria-valuemax='100')
td.text-center
svg.icon.icon-xl
use(xlink:href="node_modules/@coreui/icons/sprites/brand.svg#cib-cc-apple-pay")
td
.small.text-body-secondary Last login
.fw-semibold.text-nowrap Last week
td
.dropdown.dropup
button.btn.btn-transparent.p-0(type='button', data-coreui-toggle='dropdown', aria-haspopup='true', aria-expanded='false')
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-options")
.dropdown-menu.dropdown-menu-end
a.dropdown-item(href='#') Info
a.dropdown-item(href='#') Edit
a.dropdown-item.text-danger(href='#') Delete
tr.align-middle
td.text-center
.avatar.avatar-md
img.avatar-img(src='assets/img/avatars/6.jpg', alt='user@email.com')
span.avatar-status.bg-danger
td
.text-nowrap Friderik Dávid
.small.text-body-secondary.text-nowrap
span New
| | Registered: Jan 1, 2023
td.text-center
svg.icon.icon-xl
use(xlink:href="node_modules/@coreui/icons/sprites/flag.svg#cif-pl")
td
.d-flex.justify-content-between.align-items-baseline
.fw-semibold 43%
.text-nowrap.small.text-body-secondary.ms-3 Jun 11, 2023 - Jul 10, 2023
.progress.progress-thin
.progress-bar.bg-success(role='progressbar', style='width: 43%', aria-valuenow='43', aria-valuemin='0', aria-valuemax='100')
td.text-center
svg.icon.icon-xl
use(xlink:href="node_modules/@coreui/icons/sprites/brand.svg#cib-cc-amex")
td
.small.text-body-secondary Last login
.fw-semibold.text-nowrap Yesterday
td
.dropdown.dropup
button.btn.btn-transparent.p-0(type='button', data-coreui-toggle='dropdown', aria-haspopup='true', aria-expanded='false')
svg.icon
use(xlink:href="node_modules/@coreui/icons/sprites/free.svg#cil-options")
.dropdown-menu.dropdown-menu-end
a.dropdown-item(href='#') Info
a.dropdown-item(href='#') Edit
a.dropdown-item.text-danger(href='#') Delete
// /.col
// /.row