This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/f_templates_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
<div tal:define="worksheets context/values" i18n:domain="schooltool.gradebook">
  <form method="post"
        tal:attributes="action string:${context/@@absolute_url}">
    <input type="hidden" name="form-submitted" value="" />
    <table>
      <thead>
        <tr>
          <th i18n:translate="">Title</th>
        </tr>
      </thead>
      <tr tal:repeat="worksheet worksheets">
        <td>
          <tal:block replace="structure worksheet/@@link" />
        </td>
      </tr>
      <tr tal:condition="not: worksheets">
        <td i18n:translate="">There are no report sheet templates set up.</td>
      </tr>
    </table>
  </form>
</div>