This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/templates/components/user-stat.hbs

14 lines
283 B
Handlebars

<span class="value">
{{#if this.isNumber}}
{{number @value}}
{{else if this.isDuration}}
{{format-duration @value}}
{{else}}
{{@value}}
{{/if}}
</span>
<span class="label">
{{#if @icon}}{{d-icon @icon}}{{/if}}
{{html-safe (i18n @label count=@value)}}
</span>