courseLoggingResults.handlebars 666 B

1234567891011121314151617181920212223242526
  1. {{#if collection.length}}
  2. <table class="ic-Table">
  3. <thead>
  4. <tr>
  5. <th>{{#t "date"}}Date{{/t}}</th>
  6. <th>{{#t "time"}}Time{{/t}}</th>
  7. <th>{{#t "user"}}User{{/t}}</th>
  8. <th>{{#t "event_type"}}Type{{/t}}</th>
  9. <th>{{#t "event_source"}}Source{{/t}}</th>
  10. <th>{{#t "event_details"}}Event Details{{/t}}</th>
  11. </tr>
  12. </thead>
  13. <tbody class="collectionViewItems"></tbody>
  14. </table>
  15. <div class="paginatedLoadingIndicator"></div>
  16. {{else}}
  17. <div class="alert alert-info">
  18. <p class="lead">{{#t "no_item_found"}}No items found{{/t}}</p>
  19. </div>
  20. <div class="paginatedLoadingIndicator"></div>
  21. {{/if}}