This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/lyceum/journal/browser/templates/teacher_journal.pt is in python-schooltool.lyceum.journal 2.6.4-0ubuntu2.

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
<html metal:use-macro="view/@@standard_macros/page" i18n:domain="schooltool.lyceum.journal">
<head>
  <title metal:fill-slot="title"
         i18n:translate="">Journal</title>
</head>

<metal:block metal:fill-slot="content-header">
    <h1 i18n:translate="">Journal</h1>
</metal:block>

<metal:block metal:fill-slot="body">
  <h3 class="title" i18n:translate="">My Sections</h3>
  <tal:block repeat="section view/getSections">
    <a tal:attributes="href section/url"
       tal:content="section/title">Title</a>
  </tal:block>
</metal:block>
</html>