This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/intervention/browser/templates/f_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
37
38
39
40
41
42
43
44
45
46
47
48
49
<tal:block i18n:domain="schooltool.intervention">
<input type="hidden" name="form-submitted" value="yes" />
<fieldset>
  <legend>
    <span i18n:translate="">Filter</span>
  </legend>
  <div class="row">
    <div class="label">
        <label for="SEARCH_NAME">
          <span i18n:translate="">First name, last name or username</span>
        </label>
    </div>
    <div class="widget">
      <input type="text"
             id="SEARCH_NAME"
             name="SEARCH_NAME"
             tal:attributes="value request/SEARCH_NAME|nothing"/>
    </div>
  </div>
  <div class="row">
    <div class="label">
        <label>
          <span i18n:translate="">Show:</span>
        </label>
    </div>
    <div class="widget">
      <span class="option">
        <input type="checkbox" name="SHOW_GOALS"
               tal:attributes="checked view/show_goals"/>
        <label for="SHOW_GOALS">
          <span i18n:translate="">Goals</span>
        </label>
      </span>
      <span class="option">
        <input type="checkbox" name="SHOW_MESSAGES"
               tal:attributes="checked view/show_messages"/>
        <label for="SHOW_MESSAGES">
          <span i18n:translate="">Messages</span>
        </label>
      </span>
    </div>
  </div>
</fieldset>
<div class="buttons">
  <input class="button-ok"
         type="submit" name="STUDENT_BUTTON" value="Filter"
         i18n:attributes="value"/>
</div>
</tal:block>