This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/worksheet_delete.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
<tal:define define="dummy view/update"/>
<html metal:use-macro="view/@@standard_macros/page" i18n:domain="schooltool.gradebook">
<head>
  <title metal:fill-slot="title" i18n:translate="">Delete Worksheet</title>
</head>
<body>

<h1 metal:fill-slot="content-header" tal:content="view/title" />

<metal:block metal:fill-slot="body">
  <div style="padding-bottom: 1em">
    <p i18n:translate="">Are you sure you want to delete this worksheet together with all its activities?</p>
  </div>

  <form method="post"
        tal:attributes="action string:${context/@@absolute_url}/delete.html">
    <div class="controls">
      <input type="submit" class="button-ok" name="DELETE" value="Delete"
             i18n:attributes="value" />
      <input type="submit" class="button-cancel" name="CANCEL" value="Cancel"
             i18n:attributes="value" />
    </div>
  </form>

</metal:block>
</body>
</html>