This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/summary.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
27
28
29
30
31
32
33
34
35
36
37
38
39
<html metal:use-macro="context/@@standard_macros/page"
      i18n:domain="schooltool.gradebook">
<head>
  <title metal:fill-slot="title" i18n:translate="">
    Gradebook
  </title>
</head>
<body>

<h1 metal:fill-slot="content-header"
    i18n:translate="">Section Worksheet Summary</h1>

<div metal:fill-slot="body">

  <span tal:content="string:Section: ${view/getCurrentSection}" />
  <div style="height: 11px;"></div>
  <table class="schooltool_gradebook">
    <tr>
     <th class="cell header fully_padded">Name</th>
     <th class="cell header fully_padded"
         tal:repeat="worksheet view/worksheets"
         tal:content="worksheet/title" />
     <th class="cell header fully_padded">Calculated Final Grade</th>
    </tr>
    <tr class="bordered"
        tal:repeat="row view/table">
      <td class="cell fully_padded"
          tal:content="row/student/title" />
      <td class="cell fully_padded"
          tal:repeat="grade row/grades"
          tal:content="grade/value" />
      <td class="cell fully_padded"
          tal:content="row/calculated" />
    </tr>
  </table>

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