This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/rml/student_detail_report_attendance.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
<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 tal:define="attendance view/attendance"
       tal:condition="attendance/rows">
    <para style="report_card_comments-header" i18n:translate="">
      Attendance detail
    </para>
    <blockTable style="multi-table.subtable"
                tal:attributes="colWidths attendance/widths">
      <tr>
        <td i18n:translate="">Date</td>
        <td tal:repeat="heading attendance/headings"
            tal:content="heading" />
      </tr>
      <tr tal:repeat="row attendance/rows">
        <td tal:content="row/title" />
        <td tal:repeat="score row/scores" tal:content="score" />
      </tr>
    </blockTable>
  </pto>
  <nextPage />
</tal:block>