This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/lyceum/journal/browser/templates/f_journal.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
<tal:block replace="resource_library:schooltool.lyceum.journal.flourish" />
<tal:block condition="not:view/render_journal"
           i18n:domain="schooltool.lyceum.journal">
  <p tal:condition="view/no_timetable" i18n:translate="">
    This section is not scheduled for any term, to use the journal you
    should add a timetable first.
  </p>
  <p tal:condition="view/no_periods"
     tal:content="view/no_periods_text">
  </p>
  <p i18n:translate="">
    You can manage timetables for this section here:
    <a i18n:name="timetable_link"
       tal:attributes="href string:${view/context/section/@@absolute_url}/schedule"
       i18n:translate="">Schedule</a>
  </p>
</tal:block>
<div i18n:domain="schooltool.lyceum.journal"
     tal:condition="view/render_journal">
  <form method="post" id="grid-form" class="grid-form"
        tal:define="table view/table;
                    activities view/activities"
        tal:attributes="action string:${view/@@absolute_url}">
    <input tal:condition="request/month|nothing"
           type="hidden"
           name="month"
           tal:attributes="value request/month" />
    <input tal:condition="request/event_id|nothing"
           type="hidden"
           name="event_id"
           tal:attributes="value request/event_id" />
    <input tal:condition="request/student|nothing"
           type="hidden"
           name="student"
           tal:attributes="value request/student" />

    <div tal:replace="structure view/providers/gradebook-table" />

    <div class="gradebook-controls" id="gradebook-controls">
      <div class="buttons">
        <input type="submit" class="button-ok" name="UPDATE_SUBMIT" value="Save"
               title="Shortcut: Alt-S" accesskey="S"
               i18n:attributes="value; title; accesskey" />
      </div>
      <div class="buttons zoom-buttons">
        <button type="button" class="button-neutral zoom-button expand"
                title="Expand" i18n:attributes="title">
          <span class="ui-icon ui-icon-arrowthick-1-w"></span>
        </button>
        <button type="button" class="button-neutral zoom-button collapse"
                title="Collapse" i18n:attributes="title">
          <span class="ui-icon ui-icon-arrowthick-1-e"></span>
        </button>
        <button type="button" class="button-neutral zoom-button zoom-out"
                title="Zoom Out" i18n:attributes="title">
          <span class="ui-icon ui-icon-zoomout"></span>
        </button>
        <button type="button" class="button-neutral zoom-button zoom-normal"
                title="Zoom Normal" i18n:attributes="title">
          <span class="ui-icon ui-icon-search"></span>
        </button>
        <button type="button" class="button-neutral zoom-button zoom-in"
                title="Zoom In" i18n:attributes="title">
          <span class="ui-icon ui-icon-zoomin"></span>
        </button>
      </div>
    </div>
  </form>
</div>