This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/intervention/browser/templates/f_intervention_goals.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
50
51
52
53
54
55
56
<tal:block i18n:domain="schooltool.intervention">
<div tal:repeat="goal view/goals">
  <div>
    <a class="modify" href="" title="Edit this goal"
       tal:attributes="href string:${goal/obj/@@absolute_url}/edit.html"
       i18n:attributes="title"
       tal:condition="goal/canModify">
      <img tal:attributes="src context/++resource++schooltool.skin.flourish/edit-icon.png"
           alt="Edit"
           i18n:attributes="alt" />
    </a>
  </div>
  <table>
    <tr>
      <td i18n:translate="">Persons responsible</td>
      <td tal:content="goal/persons_responsible" />
    </tr>
    <tr>
      <td i18n:translate="">Presenting concerns</td>
      <td tal:content="goal/obj/presenting_concerns" />
    </tr>
    <tr>
      <td i18n:translate="">Goal</td>
      <td tal:content="goal/obj/goal" />
    </tr>
    <tr>
      <td i18n:translate="">Strengths</td>
      <td tal:content="goal/obj/strengths" />
    </tr>
    <tr>
      <td i18n:translate="">Indicators</td>
      <td tal:content="goal/obj/indicators" />
    </tr>
    <tr>
      <td i18n:translate="">Intervention</td>
      <td tal:content="goal/obj/intervention" />
    </tr>
    <tr>
      <td i18n:translate="">Timeline</td>
      <td tal:content="goal/timeline" />
    </tr>
    <tr>
      <td i18n:translate="">Goal met</td>
      <td tal:content="goal/goal_met" />
    </tr>
    <tr>
      <td i18n:translate="">Follow up notes</td>
      <td tal:content="goal/obj/follow_up_notes" />
    </tr>
  </table>
</div>
<h3 class="done-link" i18n:domain="schooltool">
  <a tal:attributes="href view/done"
     i18n:translate="">Done</a>
</h3>
</tal:block>