2018-02-14 05:21:46 +01:00
|
|
|
{{! 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>
|
2021-04-21 00:46:14 +02:00
|
|
|
<hr />
|
2019-05-29 22:07:05 +02:00
|
|
|
<ul class="nav nav-list member-list" data-simplebar data-simplebar-auto-hide="false">
|
2018-02-14 05:21:46 +01:00
|
|
|
{{#each members}}
|
2021-12-04 15:39:38 +01:00
|
|
|
<li>
|
|
|
|
{{#if is_active }}
|
|
|
|
{{#if is_bot}}
|
|
|
|
<i class="zulip-icon 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}}
|
2018-02-14 05:21:46 +01:00
|
|
|
{{/if}}
|
2021-12-04 15:39:38 +01:00
|
|
|
<span>{{full_name}}</span>
|
|
|
|
</li>
|
2018-02-14 05:21:46 +01:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2021-04-21 00:46:14 +02:00
|
|
|
<hr />
|
2018-07-21 12:23:49 +02:00
|
|
|
<ul class="nav nav-list manage-group">
|
2018-02-14 05:21:46 +01:00
|
|
|
<li>
|
|
|
|
<a href="#organization/user-groups-admin">
|
2018-07-04 00:33:39 +02:00
|
|
|
<i class="fa fa-cog" aria-hidden="true"></i>
|
2018-02-14 05:21:46 +01:00
|
|
|
{{t 'Manage user groups' }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|