This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/intervention/browser/templates/f_intervention_message.pt is in python-schooltool.intervention 2.7.1-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
<div i18n:domain="schooltool.intervention">
  <table>
    <tr>
      <td i18n:translate="">From:</td>
      <td tal:content="view/sender" />
    </tr>
    <tr>
      <td i18n:translate="">To:</td>
      <td tal:content="view/recipients" />
    </tr>
    <tr>
      <td i18n:translate="">Date:</td>
      <td tal:content="view/added" />
    </tr>
    <tr tal:condition="context/subject">
      <td i18n:translate="">Subject:</td>
      <td tal:content="context/subject" />
    </tr>
  </table>
  <p tal:content="context/body" />
  <h3 class="done-link" i18n:domain="schooltool">
    <a tal:attributes="href view/done"
       i18n:translate="">Done</a>
  </h3>
</div>