Merge branch 'develop' of git.digitaltelepresence.com:digital-telepresence/dtp-base into develop

master
rob 2 years ago
commit 2f155f67a3

@ -30,7 +30,7 @@ mixin renderFileUploadImage (actionUrl, containerId, imageId, imageClass, defaul
data-cropper-options= cropperOptions,
onchange="return dtp.app.selectImageFile(event);",
)
button(type="button", tabindex="-1").uk-button.dtp-button-default Select
button(type="button", tabindex="-1").uk-button.uk-button-default Select
#file-info(class="uk-text-center uk-text-left@m", hidden)
#file-name.uk-text-bold

@ -10,18 +10,23 @@ include section-title
return (value < 1000) ? numeral(value).format('0,0') : numeral(value).format('0,0.0a');
}
function displayIntegerValue (value) {
return numeral(value).format(value > 1000 ? '0,0.0a' : '0,0');
}
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
span(class="uk-visible@s").uk-margin-small-left Back
mixin renderUserLink (user)
if user.coreUserId
a(href=`/user/core/${user._id}`)= `${user.username}@${user.core.meta.domainKey}`
else
a(href=`/user/${user._id}`)= user.displayName || user.username
Loading…
Cancel
Save