grade_summary.mustache 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {{!
  2. # Copyright (C) 2011 - present Instructure, Inc.
  3. #
  4. # This file is part of Canvas.
  5. #
  6. # Canvas is free software: you can redistribute it and/or modify it under
  7. # the terms of the GNU Affero General Public License as published by the Free
  8. # Software Foundation, version 3 of the License.
  9. #
  10. # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
  11. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
  13. # details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License along
  16. # with this program. If not, see <http://www.gnu.org/licenses/>.
  17. }}
  18. <div id="student-grades-right-content">
  19. <div class="student_assignment final_grade">
  20. {{#t}}Total{{/t}}: <span class="grade">{{total}}</span>
  21. {{#letter}}
  22. <span class="final_letter_grade">
  23. (<span class="grade" id="final_letter_grade_text">{{text}}</span>)
  24. </span>
  25. {{/letter}}
  26. </div>
  27. <div id="assignments-not-weighted">
  28. {{!
  29. > courses/sidebar_periods_weighting
  30. > courses/sidebar_weighting
  31. }}
  32. </div>
  33. </div>
  34. <div id="assignments">
  35. <span id="aria-announcer" class="hide-text affix" aria-live="polite" aria-relevant="additions"></span>
  36. <table id="grades_summary" class="ic-Table ic-Table--hover-row">
  37. <thead>
  38. <tr>
  39. <th scope="col">{{#t}}Name{{/t}}</th>
  40. <th scope="col">{{#t}}Due{{/t}}</th>
  41. <th scope="col" class="assignment_score">{{#t}}Score{{/t}}</th>
  42. <th scope="col" class="possible">{{#t}}Out of{{/t}}</th>
  43. <th scope="col">{{#t}}Category{{/t}}</th>
  44. <th scope="col">{{#t}}Comment{{/t}}</th>
  45. </tr>
  46. </thead>
  47. {{#grades}}
  48. <tr>
  49. <th class="title" scope="row">
  50. {{#unread}}
  51. <div class="unread-grade">&nbsp;</div>
  52. {{/unread}}
  53. {{title}}
  54. </td>
  55. <td class="due">
  56. {{due}}
  57. </td>
  58. <td class="assignment_score">
  59. <div style="position: relative; height: 100%;" class="score_holder">
  60. <span class="tooltip">
  61. <span
  62. class="grade"
  63. >
  64. {{score}}
  65. </span>
  66. </div>
  67. </td>
  68. <td class="possible points_possible">
  69. {{possible}}
  70. </td>
  71. <td>
  72. {{category}}
  73. </td>
  74. <td>
  75. {{comment}}
  76. </td>
  77. </tr>
  78. {{/grades}}
  79. </table>
  80. </div>