mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 08:43:25 +08:00
20 lines
577 B
Handlebars
20 lines
577 B
Handlebars
{{#if editing}}
|
|
<td>
|
|
{{input value=buffered.host placeholder="example.com" enter="save" class="host-name"}}
|
|
</td>
|
|
<td>
|
|
{{category-chooser value=categoryId}}
|
|
</td>
|
|
<td>
|
|
{{d-button icon="check" action="save" class="btn-primary" disabled=cantSave}}
|
|
{{d-button icon="times" action="cancel" class="btn-danger" disabled=host.isSaving}}
|
|
</td>
|
|
{{else}}
|
|
<td>{{host.host}}</td>
|
|
<td>{{category-badge host.category}}</td>
|
|
<td>
|
|
{{d-button icon="pencil" action="edit"}}
|
|
{{d-button icon="trash-o" action="delete" class='btn-danger'}}
|
|
</td>
|
|
{{/if}}
|