mirror of https://github.com/zulip/zulip.git
13 lines
546 B
Handlebars
13 lines
546 B
Handlebars
{{#if (eq count 1)}}
|
|
{{#tr}}
|
|
This will delete the <z-profile-field-name></z-profile-field-name> profile field for 1 user.
|
|
{{#*inline "z-profile-field-name"}}<strong>{{profile_field_name}}</strong>{{/inline}}
|
|
{{/tr}}
|
|
{{else}}
|
|
{{#tr}}
|
|
This will delete the <z-profile-field-name></z-profile-field-name> profile field for <z-count></z-count> users.
|
|
{{#*inline "z-count"}}{{count}}{{/inline}}
|
|
{{#*inline "z-profile-field-name"}}<strong>{{profile_field_name}}</strong>{{/inline}}
|
|
{{/tr}}
|
|
{{/if}}
|