Bug 32910: (follow-up) Replace v4 icon names with v6
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / viewlog.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE AuthorisedValues %]
5 [% USE Branches %]
6 [% USE KohaDates %]
7 [% USE TablesSettings %]
8 [% SET footerjs = 1 %]
9 [% INCLUDE 'doc-head-open.inc' %]
10 <title>
11     [% IF ( do_it ) %]
12         Results &rsaquo; [% END %]
13
14     Logs &rsaquo; Tools &rsaquo; Koha
15 </title>
16 [% INCLUDE 'doc-head-close.inc' %]
17 [% Asset.css("css/humanmsg.css") | $raw %]
18 [% FILTER collapse %]
19     <style>
20         fieldset.rows label.viewlog {
21             float: none;
22             font-weight: normal;
23             margin: 0;
24             min-width: 9em;
25             padding: .5em;
26             text-align: left;
27             white-space: nowrap;
28             width: auto;
29         }
30         .log_modules {
31             display: flex;
32             flex-wrap: wrap;
33         }
34         .compare_info {
35             background-color: #E6F0F2;
36             margin: .5em -.5em -.5em -.5em;
37             padding: .5em;
38             text-align: right;
39         }
40         .modal-dialog {
41             width : 90%;
42         }
43         /* jsdiff styles */
44         ins {
45             background-color: #e6ffe6;
46         }
47         del {
48             background-color: #ffe6e6;
49         }
50         #col1 ins,
51         #col2 del {
52             display: none;
53         }
54         pre {
55             overflow: scroll;
56             padding: 10px;
57         }
58     </style>
59 [% END %]
60 </head>
61
62 <body id="tools_viewlog" class="tools">
63 [% WRAPPER 'header.inc' %]
64     [% INCLUDE 'cat-search.inc' %]
65 [% END %]
66
67 [% BLOCK translate_log_module %]
68 [%    SWITCH module %]
69 [%        CASE 'AUTH'         %]<span>Authentication</span>[% UNLESS Koha.Preference('AuthFailureLog') || Koha.Preference('AuthScuccessLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
70 [%        CASE 'CATALOGUING'  %]<span>Catalog</span>[% UNLESS Koha.Preference('CataloguingLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
71
72 [%        CASE 'AUTHORITIES'  %]<span>Authorities</span>[% UNLESS Koha.Preference('AuthoritiesLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
73
74 [%        CASE 'MEMBERS'      %]<span>Patrons</span>[% UNLESS Koha.Preference('BorrowersLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
75
76 [%        CASE 'ACQUISITIONS' %]<span>Acquisitions</span>[% UNLESS Koha.Preference('AcquisitionLog') %]<i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
77
78 [%        CASE 'SERIAL'       %]<span>Serials</span>[% UNLESS Koha.Preference('SubscriptionLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
79
80 [%        CASE 'HOLDS'        %]<span>Holds</span>[% UNLESS Koha.Preference('HoldsLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
81
82 [%        CASE 'ILL'          %]<span>Interlibrary loans</span>[% UNLESS Koha.Preference('IllLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
83
84 [%        CASE 'CIRCULATION'  %]<span>Circulation</span>[% UNLESS Koha.Preference('IssueLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
85
86 [%        CASE 'CLAIMS'       %]<span>Claims</span>[% UNLESS Koha.Preference('ClaimsLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
87
88 [%        CASE 'FINES'        %]<span>Fines</span>[% UNLESS Koha.Preference('FinesLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
89
90 [%        CASE 'SYSTEMPREFERENCE' %]<span>System preferences</span>
91
92 [%        CASE 'CRONJOBS' %]<span>Cron jobs</span>[% UNLESS Koha.Preference('CronjobLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
93
94 [%        CASE 'REPORTS'      %]<span>Reports</span>[% UNLESS Koha.Preference('ReportsLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
95
96 [%        CASE 'SEARCHENGINE' %]<span>Search engine</span>
97
98 [%        CASE 'NOTICES'      %]<span>Notices</span>[% UNLESS Koha.Preference('NoticesLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
99 [%        CASE 'NEWS'      %]<span>News</span>[% UNLESS Koha.Preference('NewsLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
100 [%        CASE 'RECALLS'      %]<span>Recalls</span>[% UNLESS Koha.Preference('RecallsLog') %] <i class="fa-solid fa-triangle-exclamation" title="Log not enabled"></i>[% END %]
101
102 [%        CASE %][% module | html %]
103 [%    END %]
104 [% END %]
105
106 [% BLOCK translate_log_action %]
107 [%    SWITCH action %]
108 [%        CASE 'ADD'    %]<span>Add</span>
109 [%        CASE 'DELETE' %]<span>Delete</span>
110 [%        CASE 'MODIFY' %]<span>Modify</span>
111 [%        CASE 'ISSUE'  %]<span>Checkout</span>
112 [%        CASE 'RETURN' %]<span>Return</span>
113 [%        CASE 'CREATE' %]<span>Create</span>
114 [%        CASE 'CANCEL' %]<span>Cancel</span>
115 [%        CASE 'FILL'   %]<span>Fill</span>
116 [%        CASE 'RESUME' %]<span>Resume</span>
117 [%        CASE 'SUSPEND' %]<span>Suspend</span>
118 [%        CASE 'RENEW'  %]<span>Renew</span>
119 [%        CASE 'RENEWAL' %]<span>Renew</span>
120 [%        CASE 'CHANGE PASS' %]<span>Change password</span>
121 [%        CASE 'ADDCIRCMESSAGE' %]<span>Add circulation message</span>
122 [%        CASE 'MODCIRCMESSAGE' %]<span>Modify circulation message</span>
123 [%        CASE 'DELCIRCMESSAGE' %]<span>Delete circulation message</span>
124 [%        CASE 'STATUS_CHANGE'  %]<span>Change ILL request status</span>
125 [%        CASE 'PATRON_NOTICE'  %]<span>ILL notice sent to patron</span>
126 [%        CASE 'ADD_BASKET' %]<span>Create an acquisitions basket</span>
127 [%        CASE 'MODIFY_BASKET' %]<span>Modify an acquisitions basket</span>
128 [%        CASE 'MODIFY_BASKET_HEADER' %]<span>Modify an acquisitions basket header</span>
129 [%        CASE 'MODIFY_BASKET_USERS' %]<span>Modify an acquisitions basket's users</span>
130 [%        CASE 'CLOSE_BASKET' %]<span>Close an acquisitions basket</span>
131 [%        CASE 'APPROVE_BASKET' %]<span>Approve an acquisitions basket</span>
132 [%        CASE 'REOPEN_BASKET' %]<span>Reopen an acquisitions basket</span>
133 [%        CASE 'CANCEL_ORDER' %]<span>Cancel an order</span>
134 [%        CASE 'CREATE_ORDER' %]<span>Create an order</span>
135 [%        CASE 'MODIFY_ORDER' %]<span>Modify an order</span>
136 [%        CASE 'CREATE_INVOICE_ADJUSTMENT' %]<span>Create an invoice adjustment</span>
137 [%        CASE 'UPDATE_INVOICE_ADJUSTMENT' %]<span>Modify an invoice adjustment</span>
138 [%        CASE 'DELETE_INVOICE_ADJUSTMENT' %]<span>Delete an invoice adjustment</span>
139 [%        CASE 'RECEIVE_ORDER' %]<span>Receive an order</span>
140 [%        CASE 'MODIFY_BUDGET' %]<span>Modify a budget</span>
141 [%        CASE 'CREATE_FUND' %]<span>Create a fund</span>
142 [%        CASE 'MODIFY_FUND' %]<span>Modify a fund</span>
143 [%        CASE 'DELETE_FUND' %]<span>Delete a fund</span>
144 [%        CASE 'Run'    %]<span>Run</span>
145 [%        CASE 'End'    %]<span>End</span>
146 [%        CASE 'EDIT_MAPPINGS' %]<span>Edit mappings</span>
147 [%        CASE 'RESET_MAPPINGS' %]<span>Reset mappings</span>
148 [%        CASE 'SERIAL CLAIM' %]<span>Serial claim</span>
149 [%        CASE 'ACQUISITION CLAIM' %]<span>Acquisition claim</span>
150 [%        CASE 'ACQUISITION ORDER' %]<span>Acquisition order</span>
151 [%        CASE 'OVERDUE' %]<span>Overdue</span>
152 [%        CASE 'EXPIRE'  %]<span>Expire</span>
153 [%        CASE %][% action | html %]
154 [%    END %]
155 [% END %]
156
157 [% BLOCK translate_log_interface %]
158 [%    SWITCH log_interface.upper %]
159 [%        CASE 'INTRANET'    %]<span>Intranet</span>
160 [%        CASE 'OPAC'        %]<span>OPAC</span>
161 [%        CASE 'SIP'         %]<span>SIP</span>
162 [%        CASE 'COMMANDLINE' %]<span>Command-line</span>
163 [%        CASE 'API'         %]<span>REST API</span>
164 [%        CASE 'CRON'        %]<span>Cron job</span>
165 [%        CASE 'UPGRADE'     %]<span>Upgrade</span>
166 [%        CASE %]<span>[% log_interface | html %]</span>
167 [%    END %]
168 [% END %]
169
170 [% WRAPPER 'sub-header.inc' %]
171     [% WRAPPER breadcrumbs %]
172         [% WRAPPER breadcrumb_item %]
173             <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a>
174         [% END %]
175         [% IF ( do_it ) %]
176             [% WRAPPER breadcrumb_item %]
177                 <a href="/cgi-bin/koha/tools/viewlog.pl">Logs</a>
178             [% END %]
179             [% WRAPPER breadcrumb_item bc_active= 1 %]
180                 <span>Results</span>
181             [% END %]
182         [% ELSE %]
183             [% WRAPPER breadcrumb_item bc_active= 1 %]
184                 <span>Logs</span>
185             [% END %]
186         [% END %]
187     [% END #/ WRAPPER breadcrumbs %]
188 [% END #/ WRAPPER sub-header.inc %]
189
190 <div class="main container-fluid">
191     <div class="row">
192         <div class="col-sm-10 col-sm-push-2">
193             <main>
194
195                                 <h1>Browse system logs</h1>
196                                 <form method="post" action="/cgi-bin/koha/tools/viewlog.pl">
197                                         [% IF ( do_it ) %]
198                                                 <input type="hidden" name="do_it" value="[% do_it | html %]" />
199                                         [% END %]
200                     <input type="hidden" name="src" value="[% src | html %]" />
201                                         <fieldset class="rows">
202                                                 <ol>
203                                                         <li>
204                                                                 <label for="user">Librarian:</label>
205                                 <input type="text" name="user" id="user" value="[% user | html %]" />
206                                                         </li>
207                             [% UNLESS src == "circ" %]
208                                 <li>
209                                     <label>Modules:</label>
210                                     <div class="log_modules">
211                                         [% IF modules.size == 0 %]
212                                             <label for="moduleALL" class="viewlog"><input type="checkbox" id="moduleALL" name="modules" value="" checked="checked"> All</label>
213                                         [% ELSE %]
214                                             <label for="moduleALL" class="viewlog"><input type="checkbox" id="moduleALL" name="modules" value=""> All</label>
215                                         [% END %]
216                                         [% FOREACH modx IN [ 'AUTH' 'CATALOGUING' 'AUTHORITIES' 'MEMBERS' 'ACQUISITIONS' 'SERIAL' 'HOLDS' 'ILL' 'CIRCULATION' 'CLAIMS' 'FINES' 'SYSTEMPREFERENCE' 'CRONJOBS', 'REPORTS', 'SEARCHENGINE', 'NOTICES', 'NEWS', 'RECALLS' ] %]
217                                             [% IF modules.grep(modx).size %]
218                                                 <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>
219                                             [% ELSE %]
220                                                 <label for="module[% modx | html %]" class="viewlog"><input type="checkbox" id="module[% modx | html %]" name="modules" value="[% modx | html %]"> [% PROCESS translate_log_module module=modx %]</label>
221                                             [% END %]
222                                         [% END %]
223                                     </div>
224                                 </li>
225                             [% ELSE %]
226                                 <input type="hidden" name="modules" value="MEMBERS" />
227                                 <input type="hidden" name="modules" value="CIRCULATION" />
228                             [% END %]
229                             <li>
230                                 <label>Actions:</label>
231                                 <div class="log_modules">
232                                     [% IF actions.length == 0 %]
233                                         <label for="actionALL" class="viewlog"><input type="checkbox" id="actionALL" name="actions" value="" checked="checked"> All</label>
234                                     [% ELSE %]
235                                         <label for="actionALL" class="viewlog"><input type="checkbox" id="actionALL" name="actions" value=""> All</label>
236                                     [% END %]
237
238                                     [% FOREACH actx IN [ 'ADD' 'DELETE' 'MODIFY' 'ISSUE' 'RETURN' 'RENEW' 'CREATE' 'CANCEL' 'FILL' 'SUSPEND' 'RESUME' 'ADDCIRCMESSAGE' 'MODCIRCMESSAGE' 'DELCIRCMESSAGE' 'STATUS_CHANGE' 'PATRON_NOTICE' 'CHANGE PASS' 'Run' 'End' 'EDIT_MAPPINGS' 'RESET_MAPPINGS' 'ADD_BASKET' 'MODIFY_BASKET' 'MODIFY_BASKET_HEADER' 'MODIFY_BASKET_USERS' 'CLOSE_BASKET' 'APPROVE_BASKET' 'REOPEN_BASKET' 'CANCEL_ORDER' 'CREATE_ORDER' 'MODIFY_ORDER' 'CREATE_INVOICE_ADJUSTMENT' 'UPDATE_INVOICE_ADJUSTMENT' 'DELETE_INVOICE_ADJUSTMENT' 'RECEIVE_ORDER' 'MODIFY_BUDGET' 'MODIFY_FUND' 'CREATE_FUND' 'DELETE_FUND' 'ACQUISITION CLAIM' 'ACQUISITION ORDER' 'OVERDUE' 'EXPIRE' ] %]
239                                         [% IF actions.grep(actx).size %]
240                                             <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>
241                                         [% ELSE %]
242                                             <label for="action[% actx| replace('\s+', '_') | html %]" class="viewlog"><input type="checkbox" id="action[% actx | replace('\s+', '_') | html %]" name="actions" value="[% actx | html %]"> [% PROCESS translate_log_action action=actx %]</label>
243                                         [% END %]
244                                     [% END %]
245                                 </div>
246                             </li>
247                             <li>
248                                 [% IF src == 'circ' %]
249                                     <label for="object">Borrowernumber: </label>
250                                     <input type="text" id="object" name="object" value="[% object | html %]" readonly="readonly" title="This field cannot be modified from the circulation module." />
251                                 [% ELSE %]
252                                     <label for="object">Object: </label>
253                                     <input type="text" id="object" name="object" value="[% object | html %]" />
254                                 [% END %]
255                             </li>
256                                                         <li>
257                                                                 <label for="info">Info:</label>
258                                 <input type="text" id="info" name="info" value="[% info | html %]" />
259                                                         </li>
260                             <li>
261                                 <label>Interface:</label>
262                                 [% IF interfaces.size == 0 %]
263                                     <label for="interfaceALL" class="viewlog"><input type="checkbox" id="interfaceALL" name="interfaces" value="" checked="checked"> All</label>
264                                 [% ELSE %]
265                                     <label for="interfaceALL" class="viewlog"><input type="checkbox" id="interfaceALL" name="interfaces" value=""> All</label>
266                                 [% END %]
267
268                                 [% FOREACH interf IN [ 'INTRANET' 'OPAC' 'SIP' 'COMMANDLINE' 'API' 'CRON' ] %]
269                                     [% IF interfaces.grep(interf).size %]
270                                         <label for="interface[% interf | html %]" class="viewlog"><input type="checkbox" id="interface[% interf | html %]" name="interfaces" value="[% interf | html %]" checked="checked"> [% PROCESS translate_log_interface log_interface=interf %]</label>
271                                     [% ELSE %]
272                                         <label for="interface[% interf | html %]" class="viewlog"><input type="checkbox" id="interface[% interf | html %]" name="interfaces" value="[% interf | html %]"> [% PROCESS translate_log_interface log_interface=interf %]</label>
273                                     [% END %]
274                                 [% END %]
275                             </li>
276                                                         <li>
277                                 <label for="from"> Display from: </label> <input type="text" size="10" id="from" name="from" value="[% datefrom | html %]" class="flatpickr" data-date_to="to" />
278                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
279                                                         </li>
280                                                         <li>
281                                 <label for="to">Display to: </label> <input size="10" id="to" name="to" type="text" value="[% dateto | html %]" class="flatpickr" />
282                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
283                                                         </li>
284                                                 </ol>
285                                         </fieldset>
286                                         <fieldset class="rows">
287                                                 <legend>Output</legend>
288                                                 <ol>
289                                                         <li>
290                                                                 <label for="screen" >To screen in the browser:</label> <input id="screen" type="radio" checked="checked" name="output" value="screen" />
291                                                         </li>
292                                                         <li>
293                                                                 <label for="file">To a file:</label>
294                                                                 <input id="file" type="radio" name="output" value="file" />
295                                                                 <label class="inline" for="basename">Named:</label>
296                                                                 <input type="text" name="basename" id="basename" value="Export" />
297                                                                 <!--
298                                                                         <label for="MIME" class="inline">Into an application:</label>
299                                                                         [% CGIextChoice | html %]
300                                                                         [% CGIsepChoice | html %]
301                                                                 -->
302                                                                 <input type="hidden" name="report_name" value="[% report_name | html %]" />
303                                                         </li>
304                                                 </ol>
305                                         </fieldset>
306                                         <fieldset class="action">
307                         <input type="submit" class="btn btn-primary" value="Submit" />
308                                                 <input type="hidden" name="do_it" value="1" />
309                                         </fieldset>
310                         </form>
311                 [% IF ( do_it ) %]
312                     [% IF ( total ) %]
313                         <h3>Log entries</h3>
314                         <div id="toolbar" class="btn-toolbar">
315                             <a href="#" id="select_none" class="btn btn-link disabled"><i class="fa fa-times"></i> Check none</a>
316                             <button class="btn btn-link disabled compare_link"><i class="fa fa-columns"></i> Compare selected</button>
317                         </div>
318                         <div class="page-section">
319                             <table id="logst">
320                                 <thead>
321                                     <tr>
322                                         <th>Date</th>
323                                         <th>Librarian</th>
324                                         <th>Module</th>
325                                         <th>Action</th>
326                                         <th>Object</th>
327                                         <th>Info</th>
328                                         <th>Interface</th>
329                                     </tr>
330                                 </thead>
331                                 <tbody>
332                                 [% FOREACH loopro IN looprow %]
333                                     <tr>
334                                         <td data-order="[% loopro.timestamp | html %]">[% loopro.timestamp | $KohaDates with_hours=1 %]</td>
335                                         <td>
336                                             [% IF loopro.librarian %]
337                                                 <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% loopro.librarian.borrowernumber | uri %]" title="display detail for this librarian."> [% IF ( loopro.librarian.firstname ) || ( loopro.librarian.surname ) %][% loopro.librarian.firstname | html %] [% loopro.librarian.surname | html %] ([% loopro.librarian.borrowernumber | html %]) [% ELSE %][% loopro.librarian.borrowernumber | html %][% END %]</a>
338                                             [% ELSE %]
339                                                 [% loopro.user | html %]
340                                             [% END %]
341                                         </td>
342                                         <td>[% PROCESS translate_log_module module=loopro.module %]</td>
343                                         <td>[% PROCESS translate_log_action action=loopro.action %]</td>
344                                         <td>
345                                             [% IF ( loopro.module == 'MEMBERS' ) || ( loopro.module == 'CIRCULATION' ) || ( loopro.module == 'FINES' ) %]
346                                                 [% IF loopro.patron %]
347                                                     <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% loopro.object | uri %]" title="Display member details."> [% IF ( loopro.object ) %][% IF ( loopro.patron.firstname ) || ( loopro.patron.surname ) %][% loopro.patron.firstname | html %] [% loopro.patron.surname | html %] ([% loopro.object | html %]) [% ELSE %]<span>Member</span> [% loopro.object | html %][% END %][% END %] </a>
348                                                 [% ELSE %]
349                                                     [% loopro.object | html %]
350                                                 [% END %]
351                                             [% ELSIF ( loopro.module == 'CATALOGUING' ) %]
352                                                 [% IF ( loopro.info.substr(0, 4) == 'item' ) %]
353                                                     <a href="/cgi-bin/koha/catalogue/moredetail.pl?item=[% loopro.object | uri %]&amp;biblionumber=[% loopro.biblionumber | uri %]&amp;bi=[% loopro.biblioitemnumber | uri %]#item[% loopro.object | uri %]">Item [% loopro.object | html %]</a> from
354                                                     <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% loopro.biblionumber | uri %]" title="Display detail for this biblio">Biblio [% loopro.biblionumber | html %]</a>
355                                                 [% ELSIF ( loopro.info.substr(0, 6) == 'biblio' ) %]
356                                                     <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% loopro.object | uri %]" title="Display detail for this biblio">Biblio [% loopro.object | html %]</a>
357                                                 [% ELSE %]
358                                                     [% loopro.object | html %]
359                                                 [% END %]
360                                             [% ELSIF ( loopro.module == 'SERIAL' ) %]
361                                                 <a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% loopro.object | uri %]">Subscription [% loopro.object | html %] </a>
362                                             [% ELSIF ( loopro.module == 'AUTHORITIES' ) %]
363                                                 <a href="/cgi-bin/koha/authorities/detail.pl?authid=[% loopro.object | uri %]" title="Display detail for this authority">Authority [% loopro.object | html %]</a>
364                                             [% ELSIF ( loopro.module == 'NOTICES' ) %]
365                                                 [% IF ( loopro.notice ) %]
366                                                     <a href="/cgi-bin/koha/tools/letter.pl?op=add_form&branchcode=[% loopro.notice.branchcode | uri %]&module=[% loopro.notice.module | uri %]&code=[% loopro.notice.code | uri %]#lang_[% loopro.notice.lang | uri %]">Notice [% loopro.notice.title | html %] ([% loopro.notice.code | html %])</a>
367                                                 [% ELSE %]
368                                                     [% loopro.object | html %]
369                                                 [% END %]
370                                             [% ELSIF ( loopro.module == 'RECALLS' ) %]
371                                                 [% IF loopro.recall.item_level %]
372                                                     Item-level recall on <a href="/cgi-bin/koha/catalogue/moredetail.pl?item=[% loopro.recall.item_id | uri %]&amp;biblionumber=[% loopro.recall.biblio_id | uri %]&amp;bi=[% loopro.recall.item.biblioitemnumber | uri %]">item</a>
373                                                 [% ELSE %]
374                                                     Biblio-level recall on <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% loopro.recall.biblio_id | uri %]">biblio</a>
375                                                 [% END %]
376                                             [% ELSIF ( loopro.module == 'ACQUISITIONS' && loopro.action == 'ACQUISITION ORDER' && loopro.object ) %]
377                                                 [% IF ( CAN_user_acquisition_order_manage ) %]
378                                                     Basket <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% loopro.object | uri %]">[% loopro.object | html %]</a>
379                                                 [% ELSE %]
380                                                     Basket [% loopro.object | html %]
381                                                 [% END %]
382                                             [% ELSE %]
383                                                 [% loopro.object | html %]
384                                             [% END %]
385                                         </td>
386                                         <td>
387                                             [% IF ( loopro.module == 'CIRCULATION' && loopro.object_found ) %]
388                                                 <a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% loopro.info | uri %]&amp;biblionumber=[% loopro.biblionumber | uri %]&amp;bi=[% loopro.biblioitemnumber | uri %]#item[% loopro.info | uri %]" title="Display detail for this item">Item [% loopro.barcode | html %]</a>
389                                             [% ELSIF loopro.module == "SYSTEMPREFERENCE" || loopro.module == "REPORTS" || loopro.module == "NEWS" %]
390                                                 <div class="loginfo" id="loginfo[% loopro.action_id | html %]">[% loopro.info | trim | html %]</div>
391                                                 <div class="compare_info" id="compare_info[% loopro.action_id | html %]">
392                                                     <label><input type="checkbox" name="diff" id="action_id[% loopro.action_id | html %]" data-actionid="[% loopro.action_id | html %]" data-filter="[% FOREACH info IN loopro.info.split(' \| ') %][% IF loop.first %][% info | html %][% END %][% END %]" class="compare" /> Compare</label>
393                                                 </div>
394                                             [% ELSIF loopro.module == "NOTICES" %]
395                                                 <div class="loginfo" id="loginfo[% loopro.action_id | html %]">[% loopro.info | trim | html %]</div>
396                                                 <div class="compare_info" id="compare_info[% loopro.action_id | html %]">
397                                                     <label><input type="checkbox" name="diff" id="action_id[% loopro.action_id | html %]" data-actionid="[% loopro.action_id | html %]" data-filter="[% IF loopro.notice %][% loopro.notice.title | html %][% ELSE %][% loopro.object | html %][% END %]" class="compare" /> Compare</label>
398                                                 </div>
399                                             [% ELSE %]
400                                                 <div class="loginfo" id="loginfo[% loopro.action_id | html %]">
401                                                     [% loopro.info | html %]
402                                                 </div>
403                                             [% END %]
404                                         </td>
405                                         <td>[% PROCESS translate_log_interface log_interface=loopro.interface %]</td>
406                                     </tr>
407                                 [% END %]
408                                 </tbody>
409                             </table>
410                         </div> <!-- /.page-section -->
411                     [% ELSE %]
412                         <div class="dialog alert">
413                             [% IF ( CATALOGUING ) %]
414                                 No log found for <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% object | url %]">Bibliographic record [% object | html %]</a>.
415                             [% ELSIF ( MEMBERS ) %]
416                                 No log found for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% object | url %]">[% INCLUDE 'patron-title.inc' %]</a>.
417                             [% ELSE %]
418                                 No log found.
419                             [% END %]
420                         </div>
421                     [% END %]
422                 [% END %]
423
424
425             </main>
426         </div> <!-- /.col-sm-10.col-sm-push-2 -->
427
428         <div class="col-sm-2 col-sm-pull-10">
429             <aside>
430                 [% IF ( circulation ) %]
431                     [% INCLUDE 'circ-menu.inc' %]
432                 [% ELSE %]
433                     [% IF ( CATALOGUING ) %]
434                         [% INCLUDE 'biblio-view-menu.inc' %]
435                     [% ELSE %]
436                         [% INCLUDE 'tools-menu.inc' %]
437                     [% END %]
438                 [% END %]
439             </aside>
440         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
441      </div> <!-- /.row -->
442
443 <div class="modal" id="compareInfo" tabindex="-1" role="dialog" aria-labelledby="compareInfoLabel">
444     <div class="modal-dialog modal-lg" role="document">
445         <div class="modal-content">
446             <div class="modal-header">
447                 <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
448                 <h4 class="modal-title" id="compareInfoLabel">Compare preference values</h4>
449             </div>
450             <div class="modal-body">
451                 <div class="row">
452                     <div class="compare_pane col-sm-6" id="col1">
453                         <h5>Older version</h5>
454                         <pre></pre>
455                     </div>
456                     <div class="compare_pane col-sm-6" id="col2">
457                         <h5>Newer version</h5>
458                         <pre></pre>
459                     </div>
460                 </div>
461             </div> <!-- /.modal-body -->
462             <div class="modal-footer">
463                 <button type="button" class="btn btn-default deny" data-dismiss="modal">Close</button>
464             </div>
465         </div> <!-- /.modal-content -->
466     </div> <!-- /.modal-dialog -->
467 </div> <!-- /#compareInfo -->
468
469 [% MACRO jsinclude BLOCK %]
470     [% INCLUDE 'calendar.inc' %]
471     [% INCLUDE 'datatables.inc' %]
472     [% INCLUDE 'columns_settings.inc' %]
473     [% Asset.js("lib/jquery/plugins/humanmsg.js") | $raw %]
474     [% Asset.js("js/tools-menu.js") | $raw %]
475     [% Asset.js("lib/hc-sticky.js") | $raw %]
476     [% IF ( circulation ) %]
477         [% INCLUDE 'str/members-menu.inc' %]
478         [% Asset.js("js/members-menu.js") | $raw %]
479     [% END %]
480     [% Asset.js("lib/jsdiff/jsdiff.min.js") | $raw %]
481     <script>
482         var table_settings = [% TablesSettings.GetTableSettings('tools', 'logviewer', 'logst', 'json') | $raw %];
483     </script>
484     [% Asset.js("js/viewlog.js") | $raw %]
485 [% END %]
486
487 [% INCLUDE 'intranet-bottom.inc' %]