This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/intervention/browser/templates/student_filter.pt is in python-schooltool.intervention 2.7.1-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
<tal:block i18n:domain="schooltool.intervention">
  <div id="filter_widget">
    <div class="row">
        <p class="hint">
          <label for="SEARCH_STUDENT_NAME"
                 i18n:domain="schooltool"
                 i18n:translate="">Student name</label>
        </p>
        <input type="text"
               id="SEARCH_STUDENT_NAME"
               name="SEARCH_STUDENT_NAME"
               tal:attributes="value request/SEARCH_STUDENT_NAME|nothing"/>
        <input type="checkbox" name="WITH_GOALS_ONLY"
               tal:attributes="checked request/WITH_GOALS_ONLY|nothing"/>
        <span i18n:translate="">Show only students with goals</span>
        <input class="button-ok"
               type="submit" name="SEARCH_STUDENT_BUTTON" value="Find Now"
               i18n:domain="schooltool"
               i18n:attributes="value"/>
        <input class="button-cancel"
               type="submit" name="CLEAR_STUDENT_SEARCH" value="Clear"
               i18n:domain="schooltool"
               i18n:attributes="value"/>
    </div>
  </div>
</tal:block>