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/topic_summary/private_message.js.handlebars

19 lines
577 B
Handlebars

<h3><i class='icon icon-envelope-alt'></i> {{i18n private_message_info.title}}</h3>
<div class='participants clearfix'>
{{#each content.allowed_users}}
<div class='user'>
<a href='/users/{{lower username}}'>
{{avatar this imageSize="small"}}
</a>
<a href='/users/{{lower username}}'>
{{unbound username}}
</a>
</div>
{{/each}}
</div>
{{#if controller.content.can_invite_to}}
<div class='controls'>
<button class='btn' {{action showPrivateInviteModal target="controller"}}>{{i18n private_message_info.invite}}</button>
</div>
{{/if}}