This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/intervention/browser/templates/f_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
27
28
29
30
31
32
33
34
35
36
<tal:block i18n:domain="schooltool.intervention">
<fieldset>
  <legend>
    <span i18n:translate="">Students</span>
  </legend>
  <div class="row">
    <div class="label">
        <label for="SEARCH_STUDENT_NAME">
          <span i18n:translate="">First name, last name or username</span>
        </label>
    </div>
    <div class="widget">
      <input type="text"
             id="SEARCH_STUDENT_NAME"
             name="SEARCH_STUDENT_NAME"
             tal:attributes="value request/SEARCH_STUDENT_NAME|nothing"/>
    </div>
  </div>
  <div class="row">
    <div class="label">
        <label for="WITH_GOALS_ONLY">
          <span i18n:translate="">Show only students with goals</span>
        </label>
    </div>
    <div class="widget">
        <input type="checkbox" name="WITH_GOALS_ONLY"
               tal:attributes="checked request/WITH_GOALS_ONLY|nothing"/>
    </div>
  </div>
</fieldset>
<div class="buttons">
  <input class="button-ok"
         type="submit" name="SEARCH_STUDENT_BUTTON" value="Search"
         i18n:attributes="value"/>
</div>
</tal:block>