This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/gradebook_startup.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
26
<tal:tag condition="view/update" />
<html metal:use-macro="context/@@standard_macros/page"
      i18n:domain="schooltool.gradebook">
<head>
  <title metal:fill-slot="title" i18n:translate="">
    Gradebook
  </title>
</head>
<body>
<div metal:fill-slot="body">

  <tal:block condition="python:not view.sectionsTaught and not view.sectionsAttended">
    <h1 i18n:translate="">You do not teach or attend any classes.</h1>
  </tal:block>
  <div tal:condition="view/sectionsTaught">
    <a class="navigation_header" i18n:translate=""
       tal:attributes="href view/gradebookURL">Classes you teach</a>
  </div>
  <div tal:condition="view/sectionsAttended">
    <a class="navigation_header" i18n:translate=""
       tal:attributes="href view/mygradesURL">Classes you attend</a>
  </div>

</div>
</body>
</html>