This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/f_manage_report_sheets_overview.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
<div class="manage-view" i18n:domain="schooltool.gradebook"
     tal:condition="view/has_schoolyear"
     tal:define="sheets view/sheets">
  <h3>
    <a title="Manage Deployed Report Sheets"
       tal:attributes="href view/sheets_url"
       i18n:attributes="title"
       i18n:translate="">
      Deployed Report Sheets
    </a>
  </h3>
  <p i18n:translate="" tal:condition="sheets">
    There are
    <metal:block tal:replace="python:len(sheets)" i18n:name="count"/>
    report sheets deployed in
    <metal:block tal:replace="view/schoolyear/title" i18n:name="schoolyear"/>
  </p>
  <p i18n:translate="" tal:condition="not: sheets">
    There are no report sheets deployed in
    <metal:block tal:replace="view/schoolyear/title" i18n:name="schoolyear"/>
  </p>
</div>