discourse-data-explorer/assets/javascripts/discourse/templates/admin/plugins-explorer-show.hbs

34 lines
1.1 KiB
Handlebars
Raw Normal View History

2015-06-30 12:07:33 -04:00
{{#if selectedItem}}
2015-06-29 15:10:24 -04:00
<div class="name">
{{#if editName}}
2015-06-30 12:07:33 -04:00
{{text-field value=selectedItem.name}}
2015-06-29 15:10:24 -04:00
{{else}}
2015-06-30 12:07:33 -04:00
<h2>{{selectedItem.name}}</h2>
2015-06-30 13:20:22 -04:00
{{d-button action="editName" icon="pencil" class="no-text btn-small"}}
2015-06-29 15:10:24 -04:00
{{/if}}
</div>
<div class="desc">
2015-06-30 12:07:33 -04:00
{{#if controller.editName}}
{{textarea value=selectedItem.description}}
2015-06-29 15:10:24 -04:00
{{else}}
2015-06-30 12:07:33 -04:00
{{selectedItem.description}}
2015-06-29 15:10:24 -04:00
{{/if}}
</div>
<div class="sql">
2015-06-30 12:07:33 -04:00
{{textarea value=selectedItem.sql}}
2015-06-29 15:10:24 -04:00
</div>
2015-06-30 15:52:17 -04:00
<div class="left-buttons">
{{d-button action="save" label="explorer.save" disabled=saveDisabled}}
{{d-button action="download" label="explorer.export" disabled=runDisabled icon="download"}}
</div>
<div class="right-buttons">
{{#if selectedItem.destroyed}}
{{d-button action="recover" class="" icon="undo" label="explorer.recover"}}
{{else}}
{{d-button action="discard" class="btn-danger" icon="undo" label="explorer.undo" disabled=saveDisabled}}
{{d-button action="destroy" class="btn-danger" icon="trash" label="explorer.delete"}}
{{/if}}
</div>
<div class="clear"></div>
{{/if}}