This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/lyceum/journal/browser/templates/f_myjournal.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
<tal:block replace="resource_library:schooltool.lyceum.journal.flourish" />
<div i18n:domain="schooltool.lyceum.journal"
     tal:define="absences view/absences; tardies view/tardies; participation view/participation">

  <h3 i18n:translate="">Absences</h3>
  <table>
    <tr>
      <thead>
        <th i18n:translate="">Day</th>
        <th i18n:translate="">Period</th>
      </thead>
    </tr>
    <tr tal:repeat="row absences">
      <td tal:content="row/day/@@mediumDate" />
      <td tal:content="row/period" />
    </tr>
  </table>
  <p tal:condition="not: absences" i18n:translate="">There are no absences.</p>

  <h3 i18n:translate="">Tardies</h3>
  <table>
    <tr>
      <thead>
        <th i18n:translate="">Day</th>
        <th i18n:translate="">Period</th>
      </thead>
    </tr>
    <tr tal:repeat="row tardies">
      <td tal:content="row/day/@@mediumDate" />
      <td tal:content="row/period" />
    </tr>
  </table>
  <p tal:condition="not: tardies" i18n:translate="">There are no tardies.</p>

  <h3 i18n:translate="">Participation</h3>
  <table>
    <tr>
      <thead>
        <th i18n:translate="">Term</th>
        <th i18n:translate="">Section</th>
        <th i18n:translate="">Average</th>
      </thead>
    </tr>
    <tr tal:repeat="row participation">
      <td tal:content="row/term" />
      <td tal:content="row/section" />
      <td tal:content="row/average" />
    </tr>
  </table>
  <p tal:condition="not: participation" i18n:translate="">There are no participation scores.</p>
</div>