This file is indexed.

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