2017-09-08 00:47:35 +01:00

18 lines
604 B
Handlebars

{{#if shouldDisplay}}
<div class="presence-users">
{{#each users as |user|}}
{{avatar user avatarTemplatePath="avatar_template" usernamePath="username" imageSize="small"}}
{{/each}}
<span class="presence_text">
<span class="description">
{{#if isReply ~}}
{{i18n 'presence.replying'}}
{{~else~}}
{{i18n 'presence.editing'}}
{{~/if}}</span>{{!-- (using comment to stop whitespace)
--}}</span>{{!--
--}}<span class="wave"><span class="dot">.</span><span class="dot">.</span><span class="dot">.</span>
</span>
</div>
{{/if}}