This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/rml/failing_report_rml.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
<tal:block
    xmlns:tal="http://xml.zope.org/namespaces/tal"
    xmlns:metal="http://xml.zope.org/namespaces/metal"
    xmlns:i18n="http://xml.zope.org/namespaces/i18n"
    i18n:domain="schooltool">

    <pto>
      <pto_header>
        <hr width="100%" thickness="1" cap="square" color="separator"
            spaceAfter="4" spaceBefore="8" align="center" />
        <para style="section-title" i18n:translate="">Students at risk of failing courses (continued)</para>
      </pto_header>
      <pto_trailer>
        <para style="pagesplit-continued" i18n:translate="">Continued on next page &gt;</para>
      </pto_trailer>

      <hr width="100%" thickness="1" cap="square" color="separator"
          spaceAfter="4" spaceBefore="8" align="center" />
      <para style="section-title" i18n:translate="">Students at risk of failing courses</para>

    <blockTable style="table" colWidths="25% 25% 25% 25%" repeatRows="1" alignment="left">
      <tr>
        <td i18n:translate="">Student</td>
        <td i18n:translate="">Course</td>
        <td i18n:translate="">Teacher(s)</td>
        <td i18n:translate="">Grade</td>
      </tr>
      <tal:block repeat="student view/students">
        <tr>
          <td><para tal:content="student/name" /></td>
          <td></td>
          <td></td>
          <td></td>
        </tr>
        <tr tal:repeat="row student/rows">
          <td />
          <td><para tal:content="row/course" /></td>
          <td><para tal:content="row/teacher" /></td>
          <td><para tal:content="row/grade" /></td>
        </tr>
      </tal:block>
    </blockTable>

    </pto>
</tal:block>