mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
21 lines
534 B
Handlebars
21 lines
534 B
Handlebars
{{#with realm_domain}}
|
|
<tr>
|
|
<td class="domain">{{domain}}</td>
|
|
<td>
|
|
<label class="checkbox">
|
|
<input type="checkbox" class="allow-subdomains"
|
|
{{#if allow_subdomains}} checked="checked" {{/if}} />
|
|
<span class="rendered-checkbox"></span>
|
|
</label>
|
|
</td>
|
|
<td>
|
|
{{> ../components/action_button
|
|
label=(t "Remove")
|
|
custom_classes="delete_realm_domain"
|
|
attention="quiet"
|
|
intent="danger"
|
|
}}
|
|
</td>
|
|
</tr>
|
|
{{/with}}
|