Files
purple-explorer/views/includes/rl_received.pug
T
joeuhren 03bff8c72f Sass support + layout/css cleanup
-Add sass support (Replace style.css with style.scss; add new sass_theme_reader.sh script; add sass:compile to package.json; add new dependencies for sass; compiled style.css is now minified)
-Claim address improvements (Better instructions; better error msgs)
-Fix for disappearing Network > Connections table
-Tons of layout and css fixes and tweaks (Improved mobile support)
-Remove old Exor theme
2020-12-12 20:21:49 -07:00

23 lines
910 B
Plaintext

.card.card-default.border-0
table.table.table-hover.table-bordered.table-striped.summary-table.right-border-0(style='margin-bottom:0;', cellspacing='0')
thead
tr
th.text-center
span.fa.fa-flag-checkered
th #{settings.locale.tx_address}
th #{settings.locale.rl_received}
span.small (#{settings.symbol})
tbody
- var count = 0;
each item in received
- count = count + 1;
- var itemFixed = (parseInt(item.received) / 100000000).toLocaleString('en',{'minimumFractionDigits':2,'maximumFractionDigits':8,'useGrouping':true});
- var itemFixedParts = itemFixed.split(".");
tr
td.text-center
=count
td
a.breakWord(href='/address/'+item.a_id) #{item.a_id}
include ./rl_labels.pug
td #{itemFixedParts[0]}.
span.decimal #{itemFixedParts[1]}