This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/f_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
<div i18n:domain="schooltool.gradebook">
  <table>
    <tbody>
      <tr>
        <td i18n:translate="">
          Description
        </td>
        <td tal:content="view/description" />
      </tr>
      <tr>
        <td i18n:translate="">
          File Type
        </td>
        <td tal:content="view/file_type" />
      </tr>
    </tbody>
  </table>
  <form method="post"
        tal:attributes="action string:${context/@@absolute_url}/${view/action}">
    <input type="hidden" name="form-submitted" value="" />
    <h3 i18n:translate="">Select a year or term</h3>
    <table>
      <tbody>
	<tr tal:repeat="term view/availableTerms">
	  <td>
	    <input type="radio" name="selectedTerm"
		   tal:attributes="value term/value;
				   checked term/selected" />
	    <span tal:content="term/title" />
	  </td>
	</tr>
      </tbody>
    </table>
    <div class="buttons">
      <input type="submit" class="button-ok" name="DOWNLOAD"
             onclick="return ST.dialogs.submit(this, this);"
             value="Download" i18n:attributes="value" />
      <input type="submit" class="button-cancel" name="CANCEL"
             onclick="return ST.dialogs.close(this);"
             value="Cancel" i18n:attributes="value" />
    </div>
  </form>
</div>