This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/request_absences_by_day.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<tal:define define="dummy view/update"/>
<html metal:use-macro="view/@@standard_macros/page"
      i18n:domain="schooltool.gradebook">
<head>
  <title metal:fill-slot="title" tal:content="view/title" />
</head>
<body>

<metal:block metal:fill-slot="body">
  <form method="post" class="standalone"
        tal:attributes="action string:${context/@@absolute_url}/request_absences_by_day.html">
    <input type="hidden" name="form-submitted" value="" />
    <h3 tal:content="view/title" />

    <div style="height: 10px;"></div>

    <tal:block condition="view/message">
      <span class="message" style="color: red"
            tal:content="view/message" />
      <br /><br />
    </tal:block>

    <table class="gradebook_margin_left1">
      <tr>
        <td>
          <label for="day" i18n:translate="">Date</label>
        </td>
        <td>
            <input type="text" id="day" name="day"
                   tal:attributes="value view/currentDay">
        </td>
      </tr>
    </table>

    <div style="height: 5px;"></div>

    <div class="controls">
      <input type="submit" class="button-ok" name="DOWNLOAD" value="Download"
             i18n:attributes="value" />
      <tal:block metal:use-macro="view/@@standard_macros/cancel-button" />
    </div>
  </form>

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