This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/rml/absences_by_day_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
<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>
    </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.subtable"
                tal:define="periods view/periods"
                tal:condition="periods"
                tal:attributes="colWidths view/widths">
      <tr>
        <td i18n:translate="">Student</td>
        <tal:block repeat="period periods">
          <td tal:content="period"></td>
        </tal:block>
      </tr>
      <tr tal:repeat="student view/students">
        <td tal:content="student/name"></td>
        <tal:block repeat="period student/periods">
          <td tal:content="period"></td>
        </tal:block>
      </tr>
    </blockTable>
  </pto>
</tal:block>