mirror of https://github.com/zulip/zulip.git
11 lines
631 B
Handlebars
11 lines
631 B
Handlebars
<div class="compose_invite_user" data-user-id="{{user_id}}">
|
|
{{#if can_subscribe_other_users}}
|
|
<p>{{#tr this}}<strong>__name__</strong> is not subscribed to this stream. They will not be notified unless you subscribe them.{{/tr}}</p>
|
|
<div class="compose_invite_user_controls">
|
|
<button class="btn btn-warning compose_invite_link" >{{t "Subscribe" }}</button><button type="button" class="compose_invite_close close">×</button>
|
|
</div>
|
|
{{else}}
|
|
<p>{{#tr this}}<strong>__name__</strong> is not subscribed to this stream. They will not be notified if you mention them.{{/tr}}</p>
|
|
{{/if}}
|
|
</div>
|