mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
We now mention if user is member of the group in the "Members" tab, also including the details about whether the user is direct member or is member by being direct member of one of the subgroups.
11 lines
392 B
Handlebars
11 lines
392 B
Handlebars
{{#if is_direct_member}}
|
|
{{t "You are a member of this group."}}
|
|
{{else if (not is_member)}}
|
|
{{t "You are not a member of this group."}}
|
|
{{else}}
|
|
{{#tr}}
|
|
You are a member of this group because you are a member of a subgroup (<z-subgroup-names></z-subgroup-names>).
|
|
{{#*inline "z-subgroup-names"}}{{{associated_subgroup_names_html}}}{{/inline}}
|
|
{{/tr}}
|
|
{{/if}}
|