discourse-data-explorer/assets/javascripts/discourse/templates/components/explorer-schema.hbs

16 lines
523 B
Handlebars
Raw Normal View History

{{#if hideSchema}}
{{d-button action="expandSchema" icon="chevron-left" class="no-text unhide"}}
{{/if}}
<div class="{{if hideSchema "hidden"}}">
{{text-field value=filter placeholderKey="explorer.schema.filter"}}
{{d-button action="collapseSchema" icon="chevron-right" class="no-text btn-small"}}
{{conditional-loading-spinner condition=loading}}
<div class="schema-container">
<ul>
{{#each tables as |table|}}
{{explorer-schema-onetable table=table}}
{{/each}}
</ul>
</div>
2015-07-08 16:45:13 -04:00
</div>