This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/f_weight_categories.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
<form method="post" class="standalone"
      tal:attributes="action string:${context/@@absolute_url}/weights.html"
      i18n:domain="schooltool.gradebook">
  <div class="viewspace">
    <div>
    </div>
    <div class="status"
         tal:condition="view/message">
      <div class="summary ui-state-error ui-corner-all">
        <span class="ui-icon ui-icon-info">icon</span>
        <tal:block content="view/message" />
      </div>
    </div>
    <fieldset>
      <legend>
        <span i18n:translate="">Category Weights</span>
      </legend>

      <div class="row" tal:repeat="row view/rows">
        <div class="label">
          <label tal:attributes="for row/category">
            <span tal:content="row/category_value" />
          </label>
        </div>
        <div class="widget">
          <input type="text" size="24"
                 tal:attributes="id row/category; name row/category; 
                                 value row/weight"/>
        </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>