mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
This reverses the policy that was set, but incompletely enforced, by
commit 951514dd7d
. The self-closing tag
syntax is clearer, more consistent, simpler to parse, compatible with
XML, preferred by Prettier, and (most importantly now) required by
FormatJS.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
32 lines
931 B
Handlebars
32 lines
931 B
Handlebars
{{! Contents of the "user group info" popup }}
|
|
<div class="group-info">
|
|
<div class="group-name"> {{group_name}} </div>
|
|
<div class="group-description">
|
|
{{group_description}}
|
|
</div>
|
|
</div>
|
|
<hr />
|
|
<ul class="nav nav-list member-list" data-simplebar data-simplebar-auto-hide="false">
|
|
{{#each members}}
|
|
<li>
|
|
{{#if is_active }}
|
|
{{#if is_bot}}
|
|
<i class="zulip-icon bot" aria-hidden="true"></i>
|
|
{{else}}
|
|
<span class="user_circle {{user_circle_class}} popover_user_presence" title="{{user_last_seen_time_status}}"></span>
|
|
{{/if}}
|
|
{{/if}}
|
|
<span>{{full_name}}</span>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
<hr />
|
|
<ul class="nav nav-list manage-group">
|
|
<li>
|
|
<a href="#organization/user-groups-admin">
|
|
<i class="fa fa-cog" aria-hidden="true"></i>
|
|
{{t 'Manage user groups' }}
|
|
</a>
|
|
</li>
|
|
</ul>
|