This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/lyceum/journal/browser/templates/f_school_absence_table.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<div id="gradebook" class="gradebook"
     tal:define="table view/table;
                 activities view/activities"
     i18n:domain="schooltool.lyceum.journal">
  <div id="students-part" class="students gradebook-part">
    <table>
      <thead>
        <tr>
          <th rowspan="2" class="name"
              tal:repeat="column view/name_sorting_columns"
              tal:attributes="id column/name">
            <a class="popup_link" href=""
               tal:attributes="title column/title"
               tal:content="column/title" />
          </th>
          <th i18n:translate="">Day</th>
        </tr>
        <tr>
          <th i18n:translate="">Period</th>
        </tr>
      </thead>
      <tbody>
        <tr tal:repeat="row table">
          <tal:loop repeat="column view/name_sorting_columns">
            <td tal:attributes="id row/student/id;
                                colspan python:2 if repeat['column'].end() else 1">
              <a class="popup_link"
                 href=""
                 tal:attributes="title row/student/title"
                 tal:content="python:row['student'][column.name]" />
            </td>
          </tal:loop>
        </tr>
      </tbody>
    </table>
  </div>
  <div id="grades-part" class="grades gradebook-part">
    <table>
      <thead>
        <tr tal:condition="not:view/render_journal">
          <th rowspan="2" class="no-activities">
             <p tal:content="view/no_periods_text" />
          </th>
        </tr>
        <tr tal:condition="view/render_journal">
          <tal:loop repeat="activity activities">
            <th tal:attributes="id activity/hash;
                                class activity/cssClass">
              <a class="popup_link"
                 href=""
                 tal:attributes="title activity/longTitle;
                                 href request/URL;"
                 tal:content="activity/shortTitle" />
            </th>
          </tal:loop>
          <th class="placeholder" rowspan="2">&nbsp;</th>
        </tr>
        <tr>
          <th tal:repeat="activity activities"
              tal:content="activity/period" />
        </tr>
      </thead>
      <tbody>
        <tr tal:repeat="row table">
          <td tal:repeat="grade row/grades"
              tal:content="grade/value" />
          <td class="placeholder">&nbsp;</td>
        </tr>
      </tbody>
    </table>
  </div>
  <!--
  <div id="totals-part" class="totals gradebook-part">
    <table>
      <thead>
        <tr>
          <th id="column_absences">
            <a class="popup_link" href="" i18n:translate="">Abs.</a>
          </th>
          <th id="column_tardies">
            <a class="popup_link" href="" i18n:translate="">Trd.</a>
          </th>
        </tr>
      </thead>
      <tbody>
        <tr tal:repeat="row table">
          <td tal:content="row/absences" />
          <td tal:content="row/tardies" />
        </tr>
      </tbody>
    </table>
  </div>
  -->
</div>