gradeChangeLoggingResults.handlebars 807 B

1234567891011121314151617181920212223242526272829
  1. {{#if collection.length}}
  2. <table class="ic-Table ic-Table--condensed">
  3. <thead>
  4. <tr>
  5. <th>{{#t "date"}}Date{{/t}}</th>
  6. <th>{{#t "time"}}Time{{/t}}</th>
  7. <th>{{#t "from"}}From{{/t}}</th>
  8. <th>{{#t "To"}}To{{/t}}</th>
  9. <th>{{#t "Grader"}}Grader{{/t}}</th>
  10. <th>{{#t "Student"}}Student{{/t}}</th>
  11. <th>{{#t "Course"}}Course{{/t}}</th>
  12. <th>{{#t "Assignment"}}Assignment{{/t}}</th>
  13. <th>{{#t "Anonymous"}}Anonymous{{/t}}</th>
  14. </tr>
  15. </thead>
  16. <tbody class="collectionViewItems"></tbody>
  17. </table>
  18. <div class="paginatedLoadingIndicator"></div>
  19. {{else}}
  20. <div class="alert alert-info">
  21. <p class="lead">{{#t "no_item_found"}}No items found{{/t}}</p>
  22. </div>
  23. <div class="paginatedLoadingIndicator"></div>
  24. {{/if}}