mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			511 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			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}}
 |