This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/f_template_manage.pt is in python-schooltool.gradebook 2.6.3-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
<div i18n:domain="schooltool.gradebook"
     tal:define="activities context/values">
  <div metal:use-macro="macro:form">
    <metal:block fill-slot="bottom">
    <input type="hidden" name="form-submitted" value="" />
    <h2 i18n:translate="">Report Activities</h2>
    <table tal:condition="activities">
      <thead>
        <tr>
          <th i18n:translate="">Title</th>
          <th i18n:translate="">Score System</th>
          <th i18n:translate="">Delete</th>
        </tr>
      </thead>
      <tal:block repeat="activity activities">
        <tr>
          <td>
            <span tal:content="activity/title" />
            <a class="modify" href="" title="Edit"
               tal:attributes="href string:${activity/@@absolute_url}/edit.html"
               i18n:attributes="title">
              <img tal:attributes="src context/++resource++schooltool.skin.flourish/edit-icon.png"
                   alt="Edit"
                   i18n:attributes="alt" />
            </a>
          </td>
          <td tal:content="python: view.display_scoresystem(activity)" />
          <td>
            <button class="image" type="submit" title="Delete" value="1"
                    tal:attributes="name string:delete.${activity/__name__};"
                    i18n:attributes="title">
              <img alt="Delete" i18n:attributes="alt"
                   tal:attributes="src context/++resource++schooltool.skin.flourish/remove-icon.png" />
            </button>
          </td>
        </tr>
      </tal:block>
    </table>
    <h3 i18n:translate=""
        tal:condition="not:activities">There are no report activities.</h3>
    <h3 class="done-link" i18n:domain="schooltool">
      <a tal:attributes="href view/nextURL"
         i18n:translate="">Done</a>
    </h3>
    </metal:block>
  </div>
</div>