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