ProgressionModuleCollection.handlebars 578 B

123456789101112131415
  1. <h2 id="student_{{student.id}}_header" class="screenreader-only">
  2. {{#t "module_progress_for_student"}}Module Progress for {{student.name}}{{/t}}
  3. </h2>
  4. <h2 class="student-header" aria-hidden="true">
  5. {{#t "module_progress_for"}}Module Progress for <a href='{{studentUrl}}'>{{student.name}}</a>{{/t}}
  6. </h2>
  7. <div class="module-progressions">
  8. {{#if collection.length}}
  9. <ul class="collectionViewItems"></ul>
  10. {{else}}
  11. {{#if collection.atLeastOnePageFetched}}
  12. <p class="message">{{#t "no_modules_found"}}No modules were found{{/t}}</p>
  13. {{/if}}
  14. {{/if}}
  15. </div>