mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
Tweaked by tabbott to avoid accidentally disabling the linter for handlebars templates. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
10 lines
373 B
Handlebars
10 lines
373 B
Handlebars
{{#if is_guest}}
|
|
<div class='tip'>{{t "Guests cannot edit custom emoji." }}</div>
|
|
{{else}}
|
|
{{#if realm_add_emoji_by_admins_only}}
|
|
<div class='tip'>{{t "Only organization administrators can add custom emoji in this organization." }}</div>
|
|
{{else}}
|
|
<div class='tip'>{{t "Any member of this organization can add custom emoji." }}</div>
|
|
{{/if}}
|
|
{{/if}}
|