This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/f_manage_course_worksheets.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
<div class="manage-view" i18n:domain="schooltool.gradebook"
     tal:define="sheets view/sheets">
  <h3>
    <a title="Manage Course Worksheets"
       tal:attributes="href string:${context/@@absolute_url}/deployed_worksheets.html"
       i18n:attributes="title"
       i18n:translate="">
      Course Worksheets
    </a>
  </h3>
  <p i18n:translate="" tal:condition="sheets">
    There are
    <metal:block tal:replace="python:len(sheets)" i18n:name="count"/>
    course worksheets for
    <metal:block tal:replace="view/schoolyear/title" i18n:name="schoolyear"/>
  </p>
  <p i18n:translate="" tal:condition="not: sheets">
    There are no course worksheets for
    <metal:block tal:replace="view/schoolyear/title" i18n:name="schoolyear"/>
  </p>
</div>