usersList.handlebars 827 B

12345678910111213141516171819202122232425262728293031
  1. {{#if collection.length}}
  2. <table class="roster ic-Table ic-Table--hover-row ic-Table--condensed ic-Table--striped">
  3. <thead>
  4. <tr>
  5. <th></th>
  6. <th>{{#t "name"}}Name{{/t}}</th>
  7. <th>{{#t "login_name_or_sis_id"}}Login / SIS ID{{/t}}</th>
  8. </tr>
  9. </thead>
  10. <tbody class="collectionViewItems"></tbody>
  11. </table>
  12. <div class="paginatedLoadingIndicator"></div>
  13. {{else}}
  14. {{#if collection.atLeastOnePageFetched}}
  15. <div class="alert alert-info">
  16. <p class="lead">{{#t "no_people_found"}}No people found{{/t}}</p>
  17. <p>{{#t "you_can_search_by"}}You can search by:{{/t}}</p>
  18. <ul>
  19. <li>{{#t "name"}}Name{{/t}}</li>
  20. <li>{{#t "login_name_or_sis_id"}}Login / SIS ID{{/t}}</li>
  21. </ul>
  22. </div>
  23. {{else}}
  24. <div class="paginatedLoadingIndicator"></div>
  25. {{/if}}
  26. {{/if}}