chartist-js/site/partials/table.hbs

23 lines
431 B
Handlebars

{{#if button}}<a href="#" class="button" data-toggle-visible="#{{id}}">{{button}}</a>{{/if}}
<table id="{{id}}" role="presentation">
{{#if header}}
<thead>
<tr>
{{#each header}}
<th>{{this}}</th>
{{/each}}
</tr>
</thead>
{{/if}}
<tbody>
{{#each rows}}
<tr>
{{#each this}}
<td>{{{this}}}</td>
{{/each}}
</tr>
{{/each}}
</tbody>
</table>