mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
This reverses the policy that was set, but incompletely enforced, by
commit 951514dd7d. The self-closing tag
syntax is clearer, more consistent, simpler to parse, compatible with
XML, preferred by Prettier, and (most importantly now) required by
FormatJS.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
14 lines
466 B
Handlebars
14 lines
466 B
Handlebars
{{#each subscribed_users}}
|
|
{{#if @first}}
|
|
{{t "Successfully subscribed users:" }}
|
|
{{/if}}
|
|
<a data-user-id="{{user_id}}" class="view_user_profile">{{full_name}}</a>{{#unless @last}},{{else}}.{{/unless}}
|
|
{{/each}}
|
|
<br />
|
|
{{#each already_subscribed_users}}
|
|
{{#if @first}}
|
|
{{t "Already subscribed users:" }}
|
|
{{/if}}
|
|
<a data-user-id="{{user_id}}" class="view_user_profile">{{full_name}}</a>{{#unless @last}},{{else}}.{{/unless}}
|
|
{{/each}}
|