Files
zulip/web/templates/confirm_dialog/confirm_delete_profile_field_option.hbs
Anders Kaseorg d3238e9a1b templates: Fix invalid lists inside <p>.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2025-09-10 09:57:56 -07:00

27 lines
763 B
Handlebars

<p>
{{#if (eq count 1)}}
{{#tr}}
This will clear the <z-field-name></z-field-name> profile field for 1 user.
{{#*inline "z-field-name"}}<strong>{{field_name}}</strong>{{/inline}}
{{/tr}}
{{else}}
{{#tr}}
This will clear the <z-field-name></z-field-name> profile field for <z-count></z-count> users.
{{#*inline "z-count"}}{{count}}{{/inline}}
{{#*inline "z-field-name"}}<strong>{{field_name}}</strong>{{/inline}}
{{/tr}}
{{/if}}
</p>
<div>
{{#if (eq deleted_options_count 1)}}
{{t "Deleted option:" }}
{{else}}
{{t "Deleted options:" }}
{{/if}}
</div>
<ul>
{{#each deleted_values}}
<li>{{this}}</li>
{{/each}}
</ul>