mirror of https://github.com/zulip/zulip.git
24 lines
525 B
Handlebars
24 lines
525 B
Handlebars
{{#with person}}
|
|
<tr class="user_row" id="user_{{email}}">
|
|
<td>
|
|
<span class="user_name">{{full_name}}</span>
|
|
</td>
|
|
<td>
|
|
<span class="email">{{email}}</span>
|
|
</td>
|
|
<td>
|
|
<button class="btn activation_toggle_button btn-danger"
|
|
{{#inactive}}disabled{{/inactive}}
|
|
type="button" name="activation_toggle">
|
|
{{#inactive}}
|
|
Reactivate
|
|
{{/inactive}}
|
|
{{^inactive}}
|
|
Deactivate
|
|
{{/inactive}}
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{{/with}}
|