This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/lyceum/journal/browser/templates/f_attendance_ss_view.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
19
20
21
22
23
24
25
26
27
28
29
30
<tal:block replace="resource_library:schooltool.gradebook.flourish" />
<div i18n:domain="schooltool.lyceum.journal">
  <table>
    <thead>
      <tr>
        <th i18n:translate="" i18n:domain="schooltool.gradebook">Value</th>
        <th i18n:translate="" i18n:domain="schooltool.gradebook">Description</th>
        <th i18n:translate="">Report as</th>
      </tr>
    </thead>
    <tbody>
      <tal:block repeat="score view/scores">
        <tr>
          <td>
            <span tal:content="score/value" />
          </td>
          <td>
            <span tal:content="score/description" />
          </td>
          <td>
            <span tal:content="score/tags" />
          </td>
        </tr>
      </tal:block>
    </tbody>
  </table>
  <h3 class="done-link" i18n:domain="schooltool">
    <a tal:attributes="href view/done_link" i18n:translate="">Done</a>
  </h3>
</div>