This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/f_student_gradebook.pt is in python-schooltool.gradebook 2.6.3-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<div i18n:domain="schooltool.gradebook">
  <tal:block condition="not: view/average_hide">
    <h3 tal:condition="view/average"
        tal:content="string: ${view/average_label}: ${view/average}" />
    <h3 tal:condition="not: view/average" i18n:translate="">Nothing Graded</h3>
  </tal:block>
  <table>
    <tr>
      <thead>
        <th i18n:translate="">Activity</th>
        <th i18n:translate="">Score</th>
      </thead>
    </tr>
    <tr tal:repeat="row view/table">
      <td tal:content="row/activity" />
      <td tal:condition="row/grade/comment">
        <tal:block repeat="paragraph row/grade/paragraphs">
          <p tal:content="structure paragraph"/>
        </tal:block>
      </td>
      <td tal:condition="not: row/grade/comment">
        <div tal:content="row/grade/value" />
      </td>
    </tr>
  </table>

  <h3 class="done-link" i18n:domain="schooltool">
    <a tal:attributes="href string:${context/__parent__/@@absolute_url}"
       i18n:translate="">Done</a>
  </h3>
</div>