zulip/web/templates/settings/admin_user_list.hbs

66 lines
2.9 KiB
Handlebars

<tr class="user_row{{#unless is_active}} deactivated_user{{/unless}}" data-user-id="{{user_id}}">
<td>
<span class="user_name" >
<a data-user-id="{{user_id}}" class="view_user_profile" tabindex="0">{{full_name}}</a>
{{#if is_current_user}}<span class="my_user_status">{{t '(you)' }}</span>{{/if}}</span>
<i class="fa fa-ban deactivated-user-icon" title="{{t 'User is deactivated' }}" {{#if is_active}}style="display: none;"{{/if}}></i>
</td>
{{#if display_email}}
<td>
<span class="email">{{display_email}}</span>
</td>
{{else}}
<td>
<span class="hidden-email">{{t "(hidden)"}}</span>
</td>
{{/if}}
{{#unless is_bot}}
<td>
<span class="user_id">{{user_id}}</span>
</td>
{{/unless}}
<td>
<span class="user_role">{{user_role_text}}</span>
</td>
{{#if is_bot}}
<td class="user_role">
<span class="owner">
{{#if no_owner }}
{{bot_owner_full_name}}
{{else}}
<a data-user-id="{{bot_owner_id}}" class="view_user_profile" tabindex="0">{{bot_owner_full_name}}</a>
{{/if}}
</span>
</td>
<td class="bot_type">
<span class="bot type">{{bot_type}}</span>
</td>
{{else if is_active}}
<td class="last_active">
{{ last_active_date }}
</td>
{{/if}}
{{#if can_modify}}
<td class="actions">
<span class="user-status-settings">
<span {{#if (and is_bot cannot_edit)}}class="tippy-zulip-tooltip"{{/if}} {{#if (and is_bot cannot_edit)}}data-tippy-content="{{t 'This bot cannot be edited.'}}"{{/if}}>
<button class="button rounded small btn-warning open-user-form" {{#unless is_active}}style="display: none;"{{/unless}} title="{{#if is_bot}}{{#unless cannot_edit}}{{t 'Edit bot' }}{{/unless}}{{else}}{{t 'Edit user' }}{{/if}}" data-user-id="{{user_id}}" {{#if cannot_edit}}disabled="disabled"{{/if}}>
<i class="fa fa-pencil" aria-hidden="true"></i>
</button>
</span>
{{#if is_active}}
<span {{#if (and is_bot cannot_deactivate)}}class="tippy-zulip-tooltip"{{/if}} {{#if (and is_bot cannot_deactivate)}}data-tippy-content="{{t 'This bot cannot be deactivated.'}}"{{/if}}>
<button title="{{#unless (and is_bot cannot_deactivate) }}{{t 'Deactivate' }}{{/unless}}" class="button rounded small deactivate btn-danger" {{#if cannot_deactivate}}disabled="disabled"{{/if}}>
<i class="fa fa-user-times" aria-hidden="true"></i>
</button>
</span>
{{else}}
<button title="{{t 'Reactivate' }}" class="button rounded small reactivate btn-warning">
<i class="fa fa-user-plus" aria-hidden="true"></i>
</button>
{{/if}}
</span>
</td>
{{/if}}
</tr>