This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/unhide_worksheets.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
<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="">Unhide Worksheets</title>
</head>
<body>

<h1 metal:fill-slot="content-header"
    i18n:translate="">Unhide Worksheets</h1>

<metal:block metal:fill-slot="body">
  <form method="post"
        tal:attributes="action string:${context/@@absolute_url}/unhide.html">
    <table>
      <tr tal:repeat="worksheet view/worksheets">
        <td>
          <input type="checkbox" name="unhide:list"
                 tal:attributes="value worksheet/name" />
        </td>
        <td>
          <span tal:content="worksheet/title">Worksheet</span>
        </td>
      </tr>
    </table>
    <div class="controls" tal:condition="view/canModify">
      <tal:block tal:condition="python:len(list(view.worksheets))">
        <input type="submit" class="button-ok" name="UNHIDE" value="Unhide"
               i18n:attributes="value" />
      </tal:block>
      <tal:block metal:use-macro="view/@@standard_macros/cancel-button" />
    </div>
  </form>

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