Files
zulip/static/templates/admin_user_list.handlebars
Tim Abbott 9e8346f6d7 Display owners for bots on the admin page.
(imported from commit d1a80ab8f784ab7e7249cc020b1980bd45434abd)
2013-11-16 11:35:26 -05:00

27 lines
511 B
Handlebars

{{#with user}}
<tr class="user_row" id="user_{{email}}">
<td>
<span class="user_name">{{full_name}}</span>
</td>
<td>
<span class="email">{{email}}</span>
</td>
{{#if is_bot}}
<td>
<span class="email">{{bot_owner}}</span>
</td>
{{/if}}
<td>
{{#if is_active}}
<button class="btn deactivate btn-danger">
Deactivate
</button>
{{else}}
<button class="btn reactivate btn-warning">
Reactivate
</button>
{{/if}}
</td>
</tr>
{{/with}}