This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/rml/section_absences_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
46
47
48
49
50
51
52
53
54
<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.gradebook">

  <pto>
    <pto_header>
      <hr width="100%" thickness="1" cap="square" color="separator"
          spaceAfter="4" spaceBefore="8" align="center" />
      <para style="section-title" i18n:translate="">Absences (continued)</para>
      <blockTable style="multi-table.header"
                  colWidths="55% 15% 15% 15%">
        <tr>
          <td i18n:translate="">Student</td>
          <td i18n:translate="">Absences</td>
          <td i18n:translate="">Tardies</td>
          <td i18n:translate="">Total</td>
        </tr>
      </blockTable>
    </pto_header>
    <pto_trailer>
      <para style="pagesplit-continued">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="">Absences</para>
    <blockTable style="multi-table.header"
                colWidths="55% 15% 15% 15%">
      <tr>
        <td i18n:translate="">Student</td>
        <td i18n:translate="">Absences</td>
        <td i18n:translate="">Tardies</td>
        <td i18n:translate="">Total</td>
      </tr>
    </blockTable>

    HELLO!
    <tal:block define="students view/students"
               condition="students">
      <blockTable style="multi-table.content-only"
                  colWidths="55% 15% 15% 15%">
        <tr tal:repeat="student students">
          <td tal:content="student/name"></td>
          <td tal:content="student/absences"></td>
          <td tal:content="student/tardies"></td>
          <td tal:content="student/total"></td>
        </tr>
      </blockTable>
    </tal:block>
  </pto>

</tal:block>