58576b22d6
-jQuery has been updated to v3.7.1 -Luxon has been updated to v3.4.3. Also updated the link to the documentation showing how to format dates in the settings.json.template and settings.js -Datatables has been updated to v1.13.6 -Font Awesome has been updated to v6.4.2 and all icons in the project have been updated to use the newest v6.x codes -OverlayScrollbars has been updated to v2.3.2 -flag-icons (previously called flag-icon-css) has been updated to v6.11.1 -Updated the main style.scss file with better color support for the new datatable loading animation color -Exor theme has been updated to v3.0.2 with a small fix to support the new datatable loading animation color
15 lines
1.2 KiB
Plaintext
15 lines
1.2 KiB
Plaintext
if address.a_id == null
|
|
- address.a_id = address.addresses;
|
|
if settings.labels[address.a_id] != null && settings.labels[address.a_id].enabled == true
|
|
if settings.labels[address.a_id].type
|
|
label(class='badge bg-' + settings.labels[address.a_id].type + ' float-end d-none d-' + (active == 'richlist' ? 'md' : (active == 'tx' ? 'lg' : 'sm')) + '-block', style='margin-left:15px;margin-bottom:0;')
|
|
=settings.labels[address.a_id].label
|
|
if settings.labels[address.a_id].url
|
|
a(href=settings.labels[address.a_id].url, target='_blank', alt='Visit site', title='Visit site', data-bs-toggle='tooltip', data-bs-placement='top')
|
|
span.fa-solid.fa-circle-question(style='margin-left:5px;')
|
|
else
|
|
label.badge.bg-default.float-end.d-none(class='d-' + (active == 'richlist' ? 'md' : (active == 'tx' ? 'lg' : 'sm')) + '-block', style='margin-left:15px;margin-bottom:0;')
|
|
=settings.labels[address.a_id].label
|
|
if settings.labels[address.a_id].url
|
|
a(href=settings.labels[address.a_id].url, target='_blank', alt='Visit site', title='Visit site', data-bs-toggle='tooltip', data-bs-placement='top')
|
|
span.fa-solid.fa-circle-question(style='margin-left:5px;') |