This file is indexed.

/usr/share/pyshared/schooltool/dashboard/dashboardpage.pt is in python-schooltool 1:2.1.0-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
40
41
<html metal:use-macro="view/@@standard_macros/page" i18n:domain="schooltool">
<head>
  <title metal:fill-slot="title" tal:content="context/title" />
</head>
<body>
<h1 metal:fill-slot="content-header">Gradebook</h1>

<metal:block metal:fill-slot="body">
<style type="text/css">
  .dashboardButton {
    position: fixed;
    width: 20%;
    right: 40%;
    background:#fff;
    text-align: center;
    font-weight: bold;
    z-index: 99;
    border: solid 2px #000;
    border-bottom: 0px;
  }
  div .dashboardContents {
    position: fixed;
    bottom: 0px;
    width: 80%;
    right: 10%;
    background: #fff;
    text-align: center;
    z-index: 98;
    border: solid 2px #000;
    border-bottom: 0px;
    overflow: auto;
    text-align: left;
  }
</style>

<div id="dashboardContents">
  <div tal:content="structure provider:schooltool.dashboard" />
</div>
</metal:block>
</body>
</html>