This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/templates/f_gradebook_comment_cell_dialog.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
<div class="hidden-dialog" id="comment-cell-dialog-container"
     i18n:domain="schooltool.gradebook">
  <div id="comment-cell-dialog-title" dialog_title="Enter Comment"
       i18n:attributes="dialog_title">
  </div>
  <form>
    <input type="hidden" id="comment-student-id" name="comment-student-id" value="" />
    <input type="hidden" id="comment-activity-id" name="comment-activity-id" value="" />
    <div class="viewspace">
      <fieldset>
        <div class="row">
          <div class="label">
            <label for="comment_value">
              <span i18n:translate="">Comment</span>
            </label>
          </div>
          <p class="hint" i18n:translate="">
            Enter a comment.
          </p>
          <div class="widget">
            <span tal:replace="structure view/widgets/value/render">ckeditor</span>
          </div>
        </div>
      </fieldset>
      <div class="buttons">
        <input type="submit" class="button-ok comment-cell-submit" name="SUBMIT"
               value="Submit" i18n:attributes="value" />
        <input type="submit" class="button-cancel comment-cell-cancel" name="CANCEL"
               value="Cancel" i18n:attributes="value" />
      </div>
    </div>
  </form>
</div>