mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
32 lines
1005 B
Handlebars
32 lines
1005 B
Handlebars
<table class="table table-stripped" id="realm_domains_table">
|
|
<thead>
|
|
<tr>
|
|
<th>{{t "Domain" }}</th>
|
|
<th>{{t "Allow subdomains"}}</th>
|
|
<th>{{t "Action" }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr id="add-realm-domain-widget">
|
|
<td><input type="text" class="new-realm-domain modal_text_input" placeholder="acme.com" /></td>
|
|
<td>
|
|
<label class="checkbox">
|
|
<input type="checkbox" class="new-realm-domain-allow-subdomains" />
|
|
<span class="rendered-checkbox"></span>
|
|
</label>
|
|
</td>
|
|
<td>
|
|
{{> ../components/action_button
|
|
label=(t "Add")
|
|
id="submit-add-realm-domain"
|
|
attention="quiet"
|
|
intent="brand"
|
|
}}
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<div class="alert realm_domains_info"></div>
|