You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
811 B
27 lines
811 B
//- common routines for all views everywhere
|
|
|
|
include button-icon
|
|
include labeled-icon
|
|
include section-title
|
|
|
|
-
|
|
function formatCount(value) {
|
|
value = value || 0;
|
|
return (value < 1000) ? numeral(value).format('0,0') : numeral(value).format('0,0.0a');
|
|
}
|
|
|
|
mixin renderCell (label, value, className)
|
|
div(title=`${label}: ${numeral(value).format('0,0')}`).uk-tile.uk-tile-default.uk-padding-remove.no-select
|
|
div(class=className)= value
|
|
.uk-text-muted.uk-text-small= label
|
|
|
|
-
|
|
function displayIntegerValue (value) {
|
|
return numeral(value).format(value > 1000 ? '0,0.0a' : '0,0');
|
|
}
|
|
|
|
mixin renderBackButton ( )
|
|
button(type="button", onclick="window.history.back();").uk-button.uk-button-default
|
|
span
|
|
i.fas.fa-chevron-left
|
|
span(class="uk-visible@s").uk-margin-small-left Back
|