28 lines
597 B
HTML
28 lines
597 B
HTML
|
|
<template name="GraphTest">
|
||
|
|
<div id="graphTest" style="margin: 20px">
|
||
|
|
<button name="changeData">Change Data</button>
|
||
|
|
|
||
|
|
<svg class="salesGraph"></svg>
|
||
|
|
|
||
|
|
<div class="salesTable">
|
||
|
|
<table class="table table-striped table-hover">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<!--<th class="month">Month</th>-->
|
||
|
|
<th class="year">Year</th>
|
||
|
|
<th class="total">Total</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
{{#each sales}}
|
||
|
|
<tr>
|
||
|
|
<!--<td>{{month}}</td>-->
|
||
|
|
<td>{{year}}</td>
|
||
|
|
<td>{{formatTotal total}}</td>
|
||
|
|
</tr>
|
||
|
|
{{/each}}
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|