1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00

20 lines
280 B
Handlebars
Raw Normal View History

{{#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}}