This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/request_student_report.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
<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}/${view/action}">
    <input type="hidden" name="form-submitted" value="" />
    <h3 tal:content="view/title" />
    <br />

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

    <label for="selectedTerm" class="gradebook_margin_left1" i18n:translate="">Term or Year</label>
    <select name="selectedTerm" id="selectedTerm">
      <tal:block repeat="term view/availableTerms">
        <option
            tal:attributes="value term/value;
                            selected term/selected"
            tal:content="term/title" />
      </tal:block>
    </select>

    <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>