This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/f_add_edit_report_card_source.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
47
48
49
50
51
<form method="post" class="standalone"
      tal:attributes="action request/getURL"
      i18n:domain="schooltool.gradebook">
  <input type="hidden" name="schoolyear_id" 
         tal:attributes="value request/schoolyear_id|nothing" />
  <input type="hidden" name="source_index" 
         tal:attributes="value request/source_index|nothing" />
  <div class="viewspace">
    <fieldset>
      <legend>
        <span tal:content="view/legend" />
      </legend>

      <div class="row">
        <div class="label">
          <label for="source">
            <span tal:content="view/source_label" />
          </label>
        </div>
        <div class="widget">
          <select id="source" name="source" class="select-widget">
            <tal:block repeat="choice view/source_choices">
            <option tal:attributes="value choice/value; selected choice/selected"
                    tal:content="choice/name" />
            </tal:block>
          </select>
        </div>
      </div>

      <div class="row">
        <div class="label">
          <label for="heading">
            <span tal:content="view/heading_label" />
          </label>
        </div>
        <div class="widget">
          <input type="text" id="heading" name="heading"
                 tal:attributes="value view/heading"/>
        </div>
      </div>
    </fieldset>

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