This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/student_gradebook.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
<html metal:use-macro="view/@@standard_macros/page"
      i18n:domain="schooltool.gradebook">
<head>
  <title metal:fill-slot="title" tal:content="view/title" />
</head>
<body>
  <h1 metal:fill-slot="content-header" tal:content="view/title" />

<metal:block metal:fill-slot="body">
  <div>
    <div class="info-block"
         tal:repeat="block view/blocks">
      <h3 tal:content="block/label" />
      <p tal:condition="not: block/comment"
         tal:content="block/content" />
      <tal:block condition="block/comment"
                 repeat="paragraph block/paragraphs">
        <p tal:content="structure paragraph"/>
      </tal:block>
    </div>
  </div>
</metal:block>
</body>
</html>