This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/lyceum/journal/browser/templates/f_journal_grades_legend.pt is in python-schooltool.lyceum.journal 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
<div i18n:domain="schooltool.lyceum.journal">
  <h3 i18n:translate="">Legend</h3>
  <p tal:content="context/description"></p>
  <table i18n:domain="schooltool.gradebook">
    <thead>
      <tr>
        <th i18n:translate="">Score</th>
        <th i18n:translate="">Point Value</th>
        <th i18n:translate="">Passing Score</th>
      </tr>
    </thead>
    <tbody>
      <tr tal:repeat="item view/getGrades">
        <td tal:content="item/value" />
        <td tal:content="item/points" />
        <td>
          <span tal:condition="item/passing"
                class="ui-icon ui-icon-check ui-icon-center"></span>
        </td>
      </tr>
    </tbody>
  </table>
</div>