This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/f_worksheets.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<div i18n:domain="schooltool.gradebook">
  <form method="post"
        tal:attributes="action string:${context/@@absolute_url}">
    <input type="hidden" name="form-submitted" value="" />
    <h3 i18n:translate="">Reorder or Hide Worksheets</h3>
    <table>
      <thead>
        <tr>
          <th i18n:translate="">Order</th>
          <th i18n:translate="">Title</th>
          <th i18n:translate="">Visible</th>
        </tr>
      </thead>
      <tr tal:repeat="worksheet view/worksheets">
        <td>
          <select name=""
                  tal:condition="worksheet/checked"
                  onchange="this.form.submit()"
                  tal:attributes="name string:pos.${worksheet/name}">
            <tal:block repeat="num view/positions">
              <option value="1"
                  tal:condition="python:num != worksheet['pos']"
                  tal:attributes="value num"
                  tal:content="num" />
              <option value="1" selected="selected"
                  tal:condition="python:num == worksheet['pos']"
                  tal:attributes="value num"
                  tal:content="num" />
            </tal:block>
          </select>
        </td>
        <td>
          <span tal:content="worksheet/title" />
          <a class="modify" href="" title="Edit"
             tal:attributes="href worksheet/url"
             i18n:attributes="title">
            <img tal:attributes="src context/++resource++schooltool.skin.flourish/edit-icon.png"
                 alt="Edit"
                 i18n:attributes="alt" />
          </a>
        </td>
        <td>
          <input type="checkbox" name="visible:list"
                 onchange="this.form.submit()"
                 tal:condition="not: worksheet/deployed"
                 tal:attributes="value worksheet/name;
                                 checked worksheet/checked" />
        </td>
      </tr>
    </table>

    <h3 i18n:translate="">Summary Worksheet</h3>
    <p tal:condition="view/summaryFound">
      <input type="checkbox" name="overwrite">
      <span i18n:translate="">Overwrite existing worksheets titled "Summary".</span>
    </p>

    <div class="buttons">
      <input type="submit" class="button-ok" name="ADD_SUMMARY" value="Create summary worksheet"
             i18n:attributes="value" />
    </div>

    <h3 class="done-link" i18n:domain="schooltool">
      <a tal:attributes="href string:${context/__parent__/@@absolute_url}/gradebook"
         i18n:translate="">Done</a>
    </h3>
  </form>
</div>