This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/lyceum/journal/browser/templates/f_journal_absence_legend.pt is in python-schooltool.lyceum.journal 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
<div i18n:domain="schooltool.lyceum.journal">
  <h3 i18n:translate="">Legend</h3>
  <p tal:content="context/description"></p>
  <table>
    <thead>
      <tr>
        <th colspan="2" tal:content="context/title"></th>
        <th i18n:translate="">Report as</th>
      </tr>
    </thead>
    <tbody>
      <tr tal:repeat="item view/getLegendItems">
        <td tal:content="item/value" />
        <td tal:content="item/description" />
        <td tal:content="item/meaning" />
      </tr>
    </tbody>
  </table>
</div>