mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
16 lines
482 B
Handlebars
16 lines
482 B
Handlebars
|
{{#if embedding.embeddable_hosts}}
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th style='width: 50%'>{{i18n "admin.embedding.host"}}</th>
|
||
|
<th style='width: 30%'>{{i18n "admin.embedding.category"}}</th>
|
||
|
<th style='width: 20%'> </th>
|
||
|
</tr>
|
||
|
{{#each embedding.embeddable_hosts as |host|}}
|
||
|
{{embeddable-host host=host deleteHost="deleteHost"}}
|
||
|
{{/each}}
|
||
|
</table>
|
||
|
{{/if}}
|
||
|
|
||
|
{{d-button label="admin.embedding.add_host" action="addHost" icon="plus" class="btn-primary"}}
|
||
|
|