2020-09-16 11:48:50 +02:00
|
|
|
{{#each subscribed_users}}
|
|
|
|
{{#if @first}}
|
|
|
|
{{t "Successfully subscribed users:" }}
|
|
|
|
{{/if}}
|
2020-10-10 14:48:29 +02:00
|
|
|
<a data-user-id="{{user_id}}" class="view_user_profile">{{full_name}}</a>{{#unless @last}},{{else}}.{{/unless}}
|
2020-09-16 11:48:50 +02:00
|
|
|
{{/each}}
|
|
|
|
<br>
|
|
|
|
{{#each already_subscribed_users}}
|
|
|
|
{{#if @first}}
|
|
|
|
{{t "Already subscribed users:" }}
|
|
|
|
{{/if}}
|
2020-10-10 14:48:29 +02:00
|
|
|
<a data-user-id="{{user_id}}" class="view_user_profile">{{full_name}}</a>{{#unless @last}},{{else}}.{{/unless}}
|
2020-09-16 11:48:50 +02:00
|
|
|
{{/each}}
|