This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/f_request_failing_report.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
<div i18n:domain="schooltool">
  <table class="report-dialog-message">
    <tbody>
      <tr>
        <td i18n:translate="">
          Description
        </td>
        <td tal:content="view/description" />
      </tr>
      <tr>
        <td i18n:translate="">
          File Type
        </td>
        <td tal:content="view/file_type" />
      </tr>
    </tbody>
  </table>
  <metal:block use-macro="macro:form">
    <div metal:fill-slot="extra-widgets">
      <input name="file_type" type="hidden"
             tal:attributes="value view/request/file_type|nothing"
             tal:condition="view/request/file_type|nothing" />
      <input name="description" type="hidden"
             tal:attributes="value view/request/description|nothing"
             tal:condition="view/request/description|nothing" />
      <input name="source_token" type="hidden"
             tal:attributes="value view/source_token|nothing" />
    </div>
  </metal:block>
</div>