This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/requirement/browser/scoresystems_overview.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
<tal:define define="dummy view/update"/>
<html metal:use-macro="view/@@standard_macros/page" i18n:domain="schooltool.gradebook">
<head>
  <title metal:fill-slot="title" i18n:translate="">Score Systems</title>
</head>
<body>

<h1 metal:fill-slot="content-header"
    i18n:translate="">Score Systems</h1>

<metal:block metal:fill-slot="body"
             tal:define="scoresystems view/scoresystems">

  <form method="post"
        tal:attributes="action string:${context/@@absolute_url}/index.html">
    <input type="hidden" name="form-submitted" value="" />

    <table class="schooltool_gradebook">
      <tr>
        <th class="cell header fully_padded" i18n:translate="">Delete</th>
        <th class="cell header fully_padded" i18n:translate="">Score System</th>
      </tr>

      <tr class="bordered"
          tal:repeat="scoresystem scoresystems">
        <td class="cell fully_padded">
          <input type="checkbox"
                 tal:attributes="name scoresystem/hide_name;" />
        </td>
        <td class="cell fully_padded">
          <a tal:content="scoresystem/title"
             tal:attributes="href scoresystem/url">Score System</a>
        </td>
      </tr>
    </table>

    <div class="controls">
      <input type="submit" class="button-ok" name="UPDATE_SUBMIT" value="Update"  i18n:attributes="value" />
    </div>

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