Lines 94-99
Link Here
|
94 |
|
94 |
|
95 |
[% CASE 'REPORTS' %]Reports[% UNLESS Koha.Preference('ReportsLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %] |
95 |
[% CASE 'REPORTS' %]Reports[% UNLESS Koha.Preference('ReportsLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %] |
96 |
|
96 |
|
|
|
97 |
[% CASE 'SEARCHENGINE' %]Search engine |
98 |
|
97 |
[% CASE %][% module | html %] |
99 |
[% CASE %][% module | html %] |
98 |
[% END %] |
100 |
[% END %] |
99 |
[% END %] |
101 |
[% END %] |
Lines 117-122
Link Here
|
117 |
[% CASE 'STATUS_CHANGE' %]Change ILL request status |
119 |
[% CASE 'STATUS_CHANGE' %]Change ILL request status |
118 |
[% CASE 'PATRON_NOTICE' %]ILL notice sent to patron |
120 |
[% CASE 'PATRON_NOTICE' %]ILL notice sent to patron |
119 |
[% CASE 'Run' %]Run |
121 |
[% CASE 'Run' %]Run |
|
|
122 |
[% CASE 'EDIT_MAPPINGS' %]Edit mappings |
123 |
[% CASE 'RESET_MAPPINGS' %]Reset mappings |
120 |
[% CASE %][% action | html %] |
124 |
[% CASE %][% action | html %] |
121 |
[% END %] |
125 |
[% END %] |
122 |
[% END %] |
126 |
[% END %] |
Lines 168-174
Link Here
|
168 |
[% ELSE %] |
172 |
[% ELSE %] |
169 |
<label for="moduleALL" class="viewlog"><input type="checkbox" id="moduleALL" name="modules" value=""> All</label> |
173 |
<label for="moduleALL" class="viewlog"><input type="checkbox" id="moduleALL" name="modules" value=""> All</label> |
170 |
[% END %] |
174 |
[% END %] |
171 |
[% FOREACH modx IN [ 'AUTH' 'CATALOGUING' 'AUTHORITIES' 'MEMBERS' 'ACQUISITIONS' 'SERIAL' 'HOLDS' 'ILL' 'CIRCULATION' 'LETTER' 'FINES' 'SYSTEMPREFERENCE' 'CRONJOBS', 'REPORTS' ] %] |
175 |
[% FOREACH modx IN [ 'AUTH' 'CATALOGUING' 'AUTHORITIES' 'MEMBERS' 'ACQUISITIONS' 'SERIAL' 'HOLDS' 'ILL' 'CIRCULATION' 'LETTER' 'FINES' 'SYSTEMPREFERENCE' 'CRONJOBS', 'REPORTS', 'SEARCHENGINE' ] %] |
172 |
[% IF modules.grep(modx).size %] |
176 |
[% IF modules.grep(modx).size %] |
173 |
<label for="module[% modx | html %]" class="viewlog"><input type="checkbox" id="module[% modx | html %]" name="modules" value="[% modx | html %]" checked="checked"> [% PROCESS translate_log_module module=modx %]</label> |
177 |
<label for="module[% modx | html %]" class="viewlog"><input type="checkbox" id="module[% modx | html %]" name="modules" value="[% modx | html %]" checked="checked"> [% PROCESS translate_log_module module=modx %]</label> |
174 |
[% ELSE %] |
178 |
[% ELSE %] |
Lines 190-196
Link Here
|
190 |
<label for="actionALL" class="viewlog"><input type="checkbox" id="actionALL" name="actions" value=""> All</label> |
194 |
<label for="actionALL" class="viewlog"><input type="checkbox" id="actionALL" name="actions" value=""> All</label> |
191 |
[% END %] |
195 |
[% END %] |
192 |
|
196 |
|
193 |
[% FOREACH actx IN [ 'ADD' 'DELETE' 'MODIFY' 'ISSUE' 'RETURN' 'RENEW' 'CREATE' 'CANCEL' 'SUSPEND' 'RESUME' 'ADDCIRCMESSAGE' 'DELCIRCMESSAGE' 'STATUS_CHANGE' 'PATRON_NOTICE' 'CHANGE PASS' 'Run' ] %] |
197 |
[% FOREACH actx IN [ 'ADD' 'DELETE' 'MODIFY' 'ISSUE' 'RETURN' 'RENEW' 'CREATE' 'CANCEL' 'SUSPEND' 'RESUME' 'ADDCIRCMESSAGE' 'DELCIRCMESSAGE' 'STATUS_CHANGE' 'PATRON_NOTICE' 'CHANGE PASS' 'Run' 'EDIT_MAPPINGS' 'RESET_MAPPINGS' ] %] |
194 |
[% IF actions.grep(actx).size %] |
198 |
[% IF actions.grep(actx).size %] |
195 |
<label for="action[% actx| replace('\s+', '_') | html %]" class="viewlog"><input type="checkbox" id="action[% actx | replace('\s+', '_') | html %]" name="actions" value="[% actx | html %]" checked="checked"> [% PROCESS translate_log_action action=actx %]</label> |
199 |
<label for="action[% actx| replace('\s+', '_') | html %]" class="viewlog"><input type="checkbox" id="action[% actx | replace('\s+', '_') | html %]" name="actions" value="[% actx | html %]" checked="checked"> [% PROCESS translate_log_action action=actx %]</label> |
196 |
[% ELSE %] |
200 |
[% ELSE %] |
197 |
- |
|
|