mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
20 lines
280 B
Handlebars
20 lines
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}} |