This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/f_hide_unhide_report_sheets.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
<div i18n:domain="schooltool.gradebook"
     tal:define="sheets view/all_sheets; schoolyear view/schoolyear">
  <h3 i18n:translate="">Currently Deployed Report Sheets</h3>
  <form method="post" class="standalone"
        tal:condition="view/has_schoolyear"
        tal:attributes="action request/getURL">
    <input type="hidden" name="schoolyear_id" 
           tal:attributes="value request/schoolyear_id|nothing" />
    <table>
      <thead>
        <tr>
          <th i18n:translate="">Report Sheet</th>
          <th i18n:translate="">Index</th>
          <tal:block repeat="term schoolyear/values">
            <th tal:content="term/title" />
          </tal:block>
          <th i18n:translate="">Visible</th>
        </tr>
      </thead>
      <tr tal:repeat="sheet sheets">
        <td tal:content="sheet/obj/title" />
        <td tal:content="sheet/index" />
        <tal:block repeat="term sheet/terms">
          <td>
            <span tal:condition="term" class="ui-icon ui-icon-check"></span>
          </td>
        </tal:block>
        <td>
          <input type="checkbox" name="visible:list"
                 tal:attributes="value sheet/index;
                                 checked sheet/checked" />
        </td>
      </tr>
      <tr tal:condition="not: sheets">
        <td tal:attributes="colspan python:len(schoolyear)+3" i18n:translate="">
          This year has no report sheets deployed.
        </td>
      </tr>
    </table>
    <div class="buttons controls">
      <input type="submit" class="button-ok" name="SUBMIT" value="Submit"
             i18n:attributes="value" />
      <tal:block metal:use-macro="view/@@standard_macros/cancel-button" />
    </div>
  </form>
</div>