This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/lyceum/journal/browser/templates/f_journal_history.pt is in python-schooltool.lyceum.journal 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
<div i18n:domain="schooltool.gradebook">

  <h3 tal:condition="not: view/table"
     i18n:translate="">
    <tal:block content="view/student/@@title"
               i18n:name="student_name" />
    was never scored in this worksheet.
  </h3>

  <h3 tal:condition="view/table"
      tal:content="view/student/@@title">
  </h3>

  <table tal:condition="view/table">
    <thead>
      <tr>
        <th i18n:translate="">Score</th>
        <th i18n:translate="">Evaluator</th>
        <th i18n:translate="">Date</th>
      </tr>
    </thead>

    <tbody>
    <tal:block repeat="activity view/table">
      <tr>
        <th colspan="3">
          <tal:block content="activity/date/@@fullDate" />
          -
          <tal:block tal:condition="activity/period">
            <tal:block i18n:translate="">
              Period <tal:block i18n:name="period_title" content="activity/period/title" />
            </tal:block>
          </tal:block>
          <tal:block content="activity/time" />
        </th>
      </tr>
      <tr tal:repeat="grade activity/grades">
        <td>
          <div tal:content="grade/value" />
        </td>
        <td>
          <tal:block tal:condition="grade/evaluator|nothing"
                     tal:content="grade/evaluator/@@title|nothing"/>
        </td>
        <td>
          <tal:block condition="python:grade['time'] is not None">
            <span tal:content="grade/date/@@fullDate|nothing" />
            -
            <span tal:content="grade/time|nothing" />
          </tal:block>
        </td>
      </tr>
    </tal:block>
    </tbody>
  </table>

  <h3>
    <a tal:attributes="href view/done_url"
       i18n:translate="">Done</a>
  </h3>
</div>