Files
zulip/web/templates/user_group_settings/user_group_membership_status.hbs
Sahil Batra ded36004bb group-settings: Show membership details in right panel.
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.
2024-12-05 10:35:41 -08:00

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}}