This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/requirement/browser/f_scoresystem_view.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
32
33
34
35
36
37
38
<div i18n:domain="schooltool.gradebook">
  <table>
    <thead>
      <tr>
        <th i18n:translate="">Score</th>
        <th i18n:translate="">Abbreviation</th>
        <th i18n:translate="">Point Value</th>
        <th i18n:translate="">Low Percentage</th>
        <th i18n:translate="">Passing Score</th>
      </tr>
    </thead>
    <tbody>
      <tal:block repeat="score view/scores">
        <tr>
          <td>
            <span tal:content="score/displayed_value" />
          </td>
          <td>
            <span tal:content="score/abbr_value" />
          </td>
          <td>
            <span tal:content="score/value_value" />
          </td>
          <td>
            <span tal:content="score/percent_value" />
          </td>
          <td>
            <span tal:condition="score/passing_value"
                  class="ui-icon ui-icon-check ui-icon-center"></span>
          </td>
        </tr>
      </tal:block>
    </tbody>
  </table>
  <h3 class="done-link" i18n:domain="schooltool">
    <a tal:attributes="href view/done_link" i18n:translate="">Done</a>
  </h3>
</div>