total_column_header.handlebars 612 B

12345678910111213141516171819202122
  1. <a id=total_dropdown class=gradebook-header-drop href="#" role=button>
  2. {{#t "options"}}Options{{/t}}
  3. </a>
  4. <ul class=gradebook-header-menu>
  5. {{#unless weightedGroups}}
  6. <li><a class=toggle_percent href="#">
  7. {{#if showingPoints}}
  8. {{#t "switch_to_percent"}}Switch to percent{{/t}}
  9. {{else}}
  10. {{#t "switch_to_points"}}Switch to points{{/t}}
  11. {{/if}}
  12. </a></li>
  13. {{/unless}}
  14. <li><a class=move_column href=#>
  15. {{#if totalColumnInFront}}
  16. {{#t "move_to_end"}}Move to end{{/t}}
  17. {{else}}
  18. {{#t "move_to_front"}}Move to front{{/t}}
  19. {{/if}}
  20. </a></li>
  21. </ul>