This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/hide_report_worksheet.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
<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="">Hide Deployed Report Sheet</title>
</head>
<body>

<h1 metal:fill-slot="content-header"
    i18n:translate="">Hide Deployed Report Sheet</h1>

<metal:block metal:fill-slot="body">
  <form method="post"
        tal:attributes="action string:${context/@@absolute_url}/hide_report_worksheet.html">
    <input type="hidden" name="confirm" 
           tal:attributes="value view/confirm|nothing" />
    <tal:block condition="not:view/confirm">
      <tal:block condition="not: view/available">
        <p>There are no deployed report sheets to hide.</p>
      </tal:block>
      <tal:block condition="view/available">
        <p>Select a deployed report sheet to hide and hit the 'Hide' button.</p>
        <label for="reportWorksheet" i18n:translate="">Report Sheet</label>
        <select id="reportWorksheet" name="reportWorksheet">
          <tal:block repeat="worksheet view/worksheets">
            <option tal:attributes="value worksheet/name"
                    tal:content="worksheet/title" />
          </tal:block>
        </select>
      </tal:block>
    </tal:block>
    <tal:block condition="view/confirm">
      <p tal:content="string:Are you sure you want to hide the report sheet, 
                      '${view/confirm_title}' in every section of term, 
                      '${context/title}'?  If so, hit the 'Hide' button again
                      to confirm." />
    </tal:block>
    <div class="controls">
      <tal:block condition="view/available">
        <input type="submit" class="button-ok" name="HIDE" value="Hide"
               i18n:attributes="value" />
      </tal:block>
      <tal:block metal:use-macro="view/@@standard_macros/cancel-button" />
    </div>
  </form>

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