This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/requirement/browser/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
39
40
41
42
43
44
45
46
47
48
49
50
<html metal:use-macro="view/@@standard_macros/page" i18n:domain="schooltool.gradebook">
<head>
  <title metal:fill-slot="title" i18n:translate="">View Score System</title>
</head>
<body>

<h1 metal:fill-slot="content-header"
    tal:content="context/title">View Score System</h1>

<metal:block metal:fill-slot="body">

  <table class="schooltool_gradebook">
    <tr>
      <th class="cell header fully_padded" i18n:translate="">Score</th>
      <th class="cell header fully_padded" i18n:translate="">Abbreviation</th>
      <th class="cell header fully_padded" i18n:translate="">Point Value</th>
      <th class="cell header fully_padded" i18n:translate="">Low Percentage</th>
      <th class="cell header fully_padded">Passing Score</th>
    </tr>

    <tal:block repeat="score view/scores">
      <tr class="bordered">
        <td class="cell fully_padded">
          <span tal:content="score/displayed_value" />
        </td>
        <td class="cell fully_padded">
          <span tal:content="score/abbr_value" />
        </td>
        <td class="cell fully_padded">
          <span tal:content="score/value_value" />
        </td>
        <td class="cell fully_padded">
          <span tal:content="score/percent_value" />
        </td>
        <td class="cell fully_padded">
          <span tal:content="score/passing_value" />
        </td>
      </tr>
    </tal:block>

  </table>

  <div class="controls">
    <a class="button-ok"
       tal:attributes="href view/nextURL">OK</a>
  </div>

</metal:block>
</body>
</html>