ccdb-web/app/templates/components/ccdb-table.hbs

12 lines
376 B
Handlebars

{{#if hasBlock}}
{{yield (hash
table=(component 'light-table' table=table)
pagination=(component 'ccdb-pagination' model=model changePage=(action changePage))
)}}
{{else}}
{{ccdb-pagination model=model changePage=(action changePage)}}
{{#light-table table tableClassNames="table table-striped" as |t|}}
{{t.head}}
{{t.body}}
{{/light-table}}
{{/if}}