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

16 lines
573 B
Handlebars
Raw Normal View History

2015-06-29 15:10:24 -04:00
<h3>Queries</h3>
{{text-field value=newQueryName placeholderKey="explorer.create_placeholder"}}
2015-06-25 16:26:31 -04:00
{{d-button action="create" label="explorer.create" icon="plus"}}
{{d-button action="importQuery" label="explorer.import.label" icon="upload" class="import-button"}}
2015-06-30 13:20:22 -04:00
{{combo-box valueAttribute="id" value=selectedQueryId nameProperty="name" content=content castInteger="true"}}
2015-06-29 15:10:24 -04:00
<div class="query-edit">
2015-06-30 12:07:33 -04:00
{{partial "admin/plugins-explorer-show" model=selectedItem}}
2015-06-29 15:10:24 -04:00
</div>
<hr>
2015-06-30 12:07:33 -04:00
{{conditional-loading-spinner condition=loading}}
2015-06-29 15:10:24 -04:00
<div class="query-results">
{{results}}
</div>