accessibleLineGraph.handlebars 421 B

123456789101112131415161718
  1. <table>
  2. <caption>
  3. {{#t}}
  4. The most recent scores for user {{ current_user_name }} and outcome {{ outcome_name }}.
  5. {{/t}}
  6. </caption>
  7. <tr>
  8. <th scope="col">{{#t}}Date{{/t}}</th>
  9. <th scope="col">{{#t}}Score{{/t}}</th>
  10. </tr>
  11. {{#each data}}
  12. <tr>
  13. <td scope="row">{{ tTimeToString (fudge date) "medium" }}</td>
  14. <td>{{nf y format="outcomeScore"}}</td>
  15. </tr>
  16. {{/each}}
  17. </table>