AssignmentGroupList.handlebars 443 B

123456789101112131415161718
  1. {{#if collection.length}}
  2. <ul class="collectionViewItems ig-list"></ul>
  3. {{else}}
  4. {{#if firstResetLanded}}
  5. <ul class="collectionViewItems ig-list">
  6. <li>
  7. <div class="ig-row ig-row-empty">
  8. <div class="ig-empty-msg">
  9. {{#t "no_assignment_groups"}}No Assignment Groups found{{/t}}
  10. </div>
  11. </div>
  12. </li>
  13. </ul>
  14. {{else}}
  15. <div class="loadingIndicator"></div>
  16. {{/if}}
  17. {{/if}}