mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
20 lines
320 B
Handlebars
20 lines
320 B
Handlebars
|
{{#if content.loaded}}
|
||
|
<h3>{{content.title}}</h3>
|
||
|
|
||
|
<table class='table'>
|
||
|
<tr>
|
||
|
<th>{{content.xaxis}}</th>
|
||
|
<th>{{content.yaxis}}</th>
|
||
|
</tr>
|
||
|
|
||
|
{{#each content.data}}
|
||
|
<tr>
|
||
|
<td>{{x}}</td>
|
||
|
<td>{{y}}</td>
|
||
|
</tr>
|
||
|
{{/each}}
|
||
|
</table>
|
||
|
|
||
|
{{else}}
|
||
|
{{i18n loading}}
|
||
|
{{/if}}
|