Bug 30971: Recalls log viewer error
[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 [% INCLUDE 'header.inc' %]
64 [% INCLUDE 'cat-search.inc' %]
65
66 [% BLOCK translate_log_module %]
67 [%    SWITCH module %]
68 [%        CASE 'AUTH'         %]<span>Authentication</span>[% UNLESS Koha.Preference('AuthFailureLog') || Koha.Preference('AuthScuccessLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
69 [%        CASE 'CATALOGUING'  %]<span>Catalog</span>[% UNLESS Koha.Preference('CataloguingLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
70
71 [%        CASE 'AUTHORITIES'  %]<span>Authorities</span>[% UNLESS Koha.Preference('AuthoritiesLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
72
73 [%        CASE 'MEMBERS'      %]<span>Patrons</span>[% UNLESS Koha.Preference('BorrowersLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
74
75 [%        CASE 'ACQUISITIONS' %]<span>Acquisitions</span>[% UNLESS Koha.Preference('AcquisitionLog') %]<i class="fa fa-warning" title="Log not enabled"></i>[% END %]
76
77 [%        CASE 'SERIAL'       %]<span>Serials</span>[% UNLESS Koha.Preference('SubscriptionLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
78
79 [%        CASE 'HOLDS'        %]<span>Holds</span>[% UNLESS Koha.Preference('HoldsLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
80
81 [%        CASE 'ILL'          %]<span>Interlibrary loans</span>[% UNLESS Koha.Preference('IllLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
82
83 [%        CASE 'CIRCULATION'  %]<span>Circulation</span>[% UNLESS Koha.Preference('IssueLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
84
85 [%        CASE 'CLAIMS'       %]<span>Claims</span>[% UNLESS Koha.Preference('ClaimsLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
86
87 [%        CASE 'FINES'        %]<span>Fines</span>[% UNLESS Koha.Preference('FinesLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
88
89 [%        CASE 'SYSTEMPREFERENCE' %]<span>System prefs</span>
90
91 [%        CASE 'CRONJOBS' %]<span>Cron jobs</span>[% UNLESS Koha.Preference('CronjobLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
92
93 [%        CASE 'REPORTS'      %]<span>Reports</span>[% UNLESS Koha.Preference('ReportsLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
94
95 [%        CASE 'SEARCHENGINE' %]<span>Search engine</span>
96
97 [%        CASE 'NOTICES'      %]<span>Notices</span>[% UNLESS Koha.Preference('NoticesLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
98 [%        CASE 'NEWS'      %]<span>News</span>[% UNLESS Koha.Preference('NewsLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
99 [%        CASE 'RECALLS'      %]<span>Recalls</span>[% UNLESS Koha.Preference('RecallsLog') %] <i class="fa fa-warning" title="Log not enabled"></i>[% END %]
100
101 [%        CASE %][% module | html %]
102 [%    END %]
103 [% END %]
104
105 [% BLOCK translate_log_action %]
106 [%    SWITCH action %]
107 [%        CASE 'ADD'    %]<span>Add</span>
108 [%        CASE 'DELETE' %]<span>Delete</span>
109 [%        CASE 'MODIFY' %]<span>Modify</span>
110 [%        CASE 'ISSUE'  %]<span>Checkout</span>
111 [%        CASE 'RETURN' %]<span>Return</span>
112 [%        CASE 'CREATE' %]<span>Create</span>
113 [%        CASE 'CANCEL' %]<span>Cancel</span>
114 [%        CASE 'FILL'   %]<span>Fill</span>
115 [%        CASE 'RESUME' %]<span>Resume</span>
116 [%        CASE 'SUSPEND' %]<span>Suspend</span>
117 [%        CASE 'RENEW'  %]<span>Renew</span>
118 [%        CASE 'RENEWAL' %]<span>Renew</span>
119 [%        CASE 'CHANGE PASS' %]<span>Change password</span>
120 [%        CASE 'ADDCIRCMESSAGE' %]<span>Add circulation message</span>
121 [%        CASE 'DELCIRCMESSAGE' %]<span>Delete circulation message</span>
122 [%        CASE 'STATUS_CHANGE'  %]<span>Change ILL request status</span>
123 [%        CASE 'PATRON_NOTICE'  %]<span>ILL notice sent to patron</span>
124 [%        CASE 'ADD_BASKET' %]<span>Create an acquisitions basket</span>
125 [%        CASE 'MODIFY_BASKET' %]<span>Modify an acquisitions basket</span>
126 [%        CASE 'MODIFY_BASKET_HEADER' %]<span>Modify an acquisitions basket header</span>
127 [%        CASE 'MODIFY_BASKET_USERS' %]<span>Modify an acquisitions basket's users</span>
128 [%        CASE 'CLOSE_BASKET' %]<span>Close an acquisitions basket</span>
129 [%        CASE 'APPROVE_BASKET' %]<span>Approve an acquisitions basket</span>
130 [%        CASE 'REOPEN_BASKET' %]<span>Reopen an acquisitions basket</span>
131 [%        CASE 'CANCEL_ORDER' %]<span>Cancel an order</span>
132 [%        CASE 'CREATE_ORDER' %]<span>Create an order</span>
133 [%        CASE 'MODIFY_ORDER' %]<span>Modify an order</span>
134 [%        CASE 'CREATE_INVOICE_ADJUSTMENT' %]<span>Create an invoice adjustment</span>
135 [%        CASE 'UPDATE_INVOICE_ADJUSTMENT' %]<span>Modify an invoice adjustment</span>
136 [%        CASE 'DELETE_INVOICE_ADJUSTMENT' %]<span>Delete an invoice adjustment</span>
137 [%        CASE 'RECEIVE_ORDER' %]<span>Receive an order</span>
138 [%        CASE 'MODIFY_BUDGET' %]<span>Modify a budget</span>
139 [%        CASE 'CREATE_FUND' %]<span>Create a fund</span>
140 [%        CASE 'MODIFY_FUND' %]<span>Modify a fund</span>
141 [%        CASE 'DELETE_FUND' %]<span>Delete a fund</span>
142 [%        CASE 'Run'    %]<span>Run</span>
143 [%        CASE 'EDIT_MAPPINGS' %]<span>Edit mappings</span>
144 [%        CASE 'RESET_MAPPINGS' %]<span>Reset mappings</span>
145 [%        CASE 'SERIAL CLAIM' %]<span>Serial claim</span>
146 [%        CASE 'ACQUISITION CLAIM' %]<span>Acquisition claim</span>
147 [%        CASE 'ACQUISITION ORDER' %]<span>Acquisition order</span>
148 [%        CASE 'FULFILL' %]<span>Fulfill</span>
149 [%        CASE 'OVERDUE' %]<span>Overdue</span>
150 [%        CASE 'EXPIRE'  %]<span>Expire</span>
151 [%        CASE %][% action | html %]
152 [%    END %]
153 [% END %]
154
155 [% BLOCK translate_log_interface %]
156 [%    SWITCH log_interface.upper %]
157 [%        CASE 'INTRANET'    %]<span>Intranet</span>
158 [%        CASE 'OPAC'        %]<span>OPAC</span>
159 [%        CASE 'SIP'         %]<span>SIP</span>
160 [%        CASE 'COMMANDLINE' %]<span>Command-line</span>
161 [%        CASE 'API'         %]<span>REST API</span>
162 [%        CASE 'CRON'        %]<span>Cron job</span>
163 [%        CASE 'UPGRADE'     %]<span>Upgrade</span>
164 [%        CASE %]<span>[% log_interface | html %]</span>
165 [%    END %]
166 [% END %]
167
168 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
169     <ol>
170         <li>
171             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
172         </li>
173         <li>
174             <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a>
175         </li>
176         [% IF ( do_it ) %]
177             <li>
178                 <a href="/cgi-bin/koha/tools/viewlog.pl">Logs</a>
179             </li>
180             <li>
181                 <a href="#" aria-current="page">
182                     Results
183                 </a>
184             </li>
185         [% ELSE %]
186             <li>
187                 <a href="#" aria-current="page">
188                     Logs
189                 </a>
190             </li>
191         [% END %]
192     </ol>
193 </nav>
194
195 <div class="main container-fluid">
196     <div class="row">
197         <div class="col-sm-10 col-sm-push-2">
198             <main>
199
200                                 <h1>Browse system logs</h1>
201                                 <form method="post" action="/cgi-bin/koha/tools/viewlog.pl">
202                                         [% IF ( do_it ) %]
203                                                 <input type="hidden" name="do_it" value="[% do_it | html %]" />
204                                         [% END %]
205                     <input type="hidden" name="src" value="[% src | html %]" />
206                                         <fieldset class="rows">
207                                                 <ol>
208                                                         <li>
209                                                                 <label for="user">Librarian:</label>
210                                 <input type="text" name="user" id="user" value="[% user | html %]" />
211                                                         </li>
212                             [% UNLESS src == "circ" %]
213                                 <li>
214                                     <label>Modules:</label>
215                                     <div class="log_modules">
216                                         [% IF modules.size == 0 %]
217                                             <label for="moduleALL" class="viewlog"><input type="checkbox" id="moduleALL" name="modules" value="" checked="checked"> All</label>
218                                         [% ELSE %]
219                                             <label for="moduleALL" class="viewlog"><input type="checkbox" id="moduleALL" name="modules" value=""> All</label>
220                                         [% END %]
221                                         [% FOREACH modx IN [ 'AUTH' 'CATALOGUING' 'AUTHORITIES' 'MEMBERS' 'ACQUISITIONS' 'SERIAL' 'HOLDS' 'ILL' 'CIRCULATION' 'CLAIMS' 'FINES' 'SYSTEMPREFERENCE' 'CRONJOBS', 'REPORTS', 'SEARCHENGINE', 'NOTICES', 'NEWS', 'RECALLS' ] %]
222                                             [% IF modules.grep(modx).size %]
223                                                 <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>
224                                             [% ELSE %]
225                                                 <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>
226                                             [% END %]
227                                         [% END %]
228                                     </div>
229                                 </li>
230                             [% ELSE %]
231                                 <input type="hidden" name="modules" value="MEMBERS" />
232                                 <input type="hidden" name="modules" value="CIRCULATION" />
233                             [% END %]
234                             <li>
235                                 <label>Actions:</label>
236                                 <div class="log_modules">
237                                     [% IF actions.length == 0 %]
238                                         <label for="actionALL" class="viewlog"><input type="checkbox" id="actionALL" name="actions" value="" checked="checked"> All</label>
239                                     [% ELSE %]
240                                         <label for="actionALL" class="viewlog"><input type="checkbox" id="actionALL" name="actions" value=""> All</label>
241                                     [% END %]
242
243                                     [% FOREACH actx IN [ 'ADD' 'DELETE' 'MODIFY' 'ISSUE' 'RETURN' 'RENEW' 'CREATE' 'CANCEL' 'FILL' 'SUSPEND' 'RESUME' 'ADDCIRCMESSAGE' 'DELCIRCMESSAGE' 'STATUS_CHANGE' 'PATRON_NOTICE' 'CHANGE PASS' 'Run' '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' 'OVERDUE' 'EXPIRE' 'FULFILL' ] %]
244                                         [% IF actions.grep(actx).size %]
245                                             <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>
246                                         [% ELSE %]
247                                             <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>
248                                         [% END %]
249                                     [% END %]
250                                 </div>
251                             </li>
252                             <li>
253                                 [% IF src == 'circ' %]
254                                     <label for="object">Borrowernumber: </label>
255                                     <input type="text" id="object" name="object" value="[% object | html %]" readonly="readonly" title="This field cannot be modified from the circulation module." />
256                                 [% ELSE %]
257                                     <label for="object">Object: </label>
258                                     <input type="text" id="object" name="object" value="[% object | html %]" />
259                                 [% END %]
260                             </li>
261                                                         <li>
262                                                                 <label for="info">Info:</label>
263                                 <input type="text" id="info" name="info" value="[% info | html %]" />
264                                                         </li>
265                             <li>
266                                 <label>Interface:</label>
267                                 [% IF interfaces.size == 0 %]
268                                     <label for="interfaceALL" class="viewlog"><input type="checkbox" id="interfaceALL" name="interfaces" value="" checked="checked"> All</label>
269                                 [% ELSE %]
270                                     <label for="interfaceALL" class="viewlog"><input type="checkbox" id="interfaceALL" name="interfaces" value=""> All</label>
271                                 [% END %]
272
273                                 [% FOREACH interf IN [ 'INTRANET' 'OPAC' 'SIP' 'COMMANDLINE' 'API' 'CRON' ] %]
274                                     [% IF interfaces.grep(interf).size %]
275                                         <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>
276                                     [% ELSE %]
277                                         <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>
278                                     [% END %]
279                                 [% END %]
280                             </li>
281                                                         <li>
282                                 <label for="from"> Display from: </label> <input type="text" size="10" id="from" name="from" value="[% datefrom | html %]" class="flatpickr" data-date_to="to" />
283                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
284                                                         </li>
285                                                         <li>
286                                 <label for="to">Display to: </label> <input size="10" id="to" name="to" type="text" value="[% dateto | html %]" class="flatpickr" />
287                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
288                                                         </li>
289                                                 </ol>
290                                         </fieldset>
291                                         <fieldset class="rows">
292                                                 <legend>Output</legend>
293                                                 <ol>
294                                                         <li>
295                                                                 <label for="screen" >To screen in the browser:</label> <input id="screen" type="radio" checked="checked" name="output" value="screen" />
296                                                         </li>
297                                                         <li>
298                                                                 <label for="file">To a file:</label>
299                                                                 <input id="file" type="radio" name="output" value="file" />
300                                                                 <label class="inline" for="basename">Named:</label>
301                                                                 <input type="text" name="basename" id="basename" value="Export" />
302                                                                 <!--
303                                                                         <label for="MIME" class="inline">Into an application:</label>
304                                                                         [% CGIextChoice | html %]
305                                                                         [% CGIsepChoice | html %]
306                                                                 -->
307                                                                 <input type="hidden" name="report_name" value="[% report_name | html %]" />
308                                                         </li>
309                                                 </ol>
310                                         </fieldset>
311                                         <fieldset class="action">
312                                                 <input type="submit" value="Submit" />
313                                                 <input type="hidden" name="do_it" value="1" />
314                                         </fieldset>
315                         </form>
316                 [% IF ( do_it ) %]
317                     [% IF ( total ) %]
318                         <h3>Log entries</h3>
319                         <div id="toolbar" class="btn-toolbar">
320                             <a href="#" id="select_none" class="btn btn-link disabled"><i class="fa fa-remove"></i> Check none</a>
321                             <button class="btn btn-link disabled compare_link"><i class="fa fa-columns"></i> Compare selected</button>
322                         </div>
323                         <table id="logst">
324                             <thead>
325                                 <tr>
326                                     <th>Date</th>
327                                     <th>Librarian</th>
328                                     <th>Module</th>
329                                     <th>Action</th>
330                                     <th>Object</th>
331                                     <th>Info</th>
332                                     <th>Interface</th>
333                                 </tr>
334                             </thead>
335                             <tbody>
336                             [% FOREACH loopro IN looprow %]
337                                 <tr>
338                                     <td data-order="[% loopro.timestamp | html %]">[% loopro.timestamp | $KohaDates with_hours=1 %]</td>
339                                     <td>
340                                         [% IF loopro.librarian %]
341                                             <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>
342                                         [% ELSE %]
343                                             [% loopro.user | html %]
344                                         [% END %]
345                                     </td>
346                                     <td>[% PROCESS translate_log_module module=loopro.module %]</td>
347                                     <td>[% PROCESS translate_log_action action=loopro.action %]</td>
348                                     <td>
349                                         [% IF ( loopro.module == 'MEMBERS' ) || ( loopro.module == 'CIRCULATION' ) || ( loopro.module == 'FINES' ) %]
350                                             [% IF loopro.patron %]
351                                                 <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 %]Member [% loopro.object | html %][% END %][% END %] </a>
352                                             [% ELSE %]
353                                                 [% loopro.object | html %]
354                                             [% END %]
355                                         [% ELSIF ( loopro.module == 'CATALOGUING' ) %]
356                                             [% IF ( loopro.info.substr(0, 4) == 'item' ) %]
357                                                 <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
358                                                 <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% loopro.biblionumber | uri %]" title="Display detail for this biblio">Biblio [% loopro.biblionumber | html %]</a>
359                                             [% ELSIF ( loopro.info.substr(0, 6) == 'biblio' ) %]
360                                                 <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% loopro.object | uri %]" title="Display detail for this biblio">Biblio [% loopro.object | html %]</a>
361                                             [% ELSE %]
362                                                 [% loopro.object | html %]
363                                             [% END %]
364                                         [% ELSIF ( loopro.module == 'SERIAL' ) %]
365                                             <a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% loopro.object | uri %]">Subscription [% loopro.object | html %] </a>
366                                         [% ELSIF ( loopro.module == 'AUTHORITIES' ) %]
367                                             <a href="/cgi-bin/koha/authorities/detail.pl?authid=[% loopro.object | uri %]" title="Display detail for this authority">Authority [% loopro.object | html %]</a>
368                                         [% ELSIF ( loopro.module == 'NOTICES' ) %]
369                                             [% IF ( loopro.notice ) %]
370                                                 <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>
371                                             [% ELSE %]
372                                                 [% loopro.object | html %]
373                                             [% END %]
374                                         [% ELSIF ( loopro.module == 'RECALLS' ) %]
375                                             [% IF loopro.recall.item_level %]
376                                                 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>
377                                             [% ELSE %]
378                                                 Biblio-level recall on <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% loopro.recall.biblio_id | uri %]">biblio</a>
379                                             [% END %]
380                                         [% ELSE %]
381                                             [% loopro.object | html %]
382                                         [% END %]
383                                     </td>
384                                     <td>
385                                         [% IF ( loopro.module == 'CIRCULATION' ) %]
386                                             <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>
387                                         [% ELSE %]
388                                             [% IF loopro.module == "SYSTEMPREFERENCE" || loopro.module == "REPORTS" || loopro.module == "NEWS" %]
389                                                 <div class="loginfo" id="loginfo[% loopro.action_id | html %]">[% loopro.info | trim | html %]</div>
390                                                 <div class="compare_info" id="compare_info[% loopro.action_id | html %]">
391                                                     <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>
392                                                 </div>
393                                             [% ELSIF loopro.module == "NOTICES" %]
394                                                 <div class="loginfo" id="loginfo[% loopro.action_id | html %]">[% loopro.info | trim | html %]</div>
395                                                 <div class="compare_info" id="compare_info[% loopro.action_id | html %]">
396                                                     <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>
397                                                 </div>
398                                             [% ELSE %]
399                                                 <div class="loginfo" id="loginfo[% loopro.action_id | html %]">
400                                                     [% loopro.info | html %]
401                                                 </div>
402                                             [% END %]
403                                         [% END %]
404                                     </td>
405                                     <td>[% PROCESS translate_log_interface log_interface=loopro.interface %]</td>
406                                 </tr>
407                             [% END %]
408                             </tbody>
409                         </table>
410                     [% ELSE %]
411                         <div class="dialog alert">
412                             No log found
413                             [% IF ( CATALOGUING ) %]
414                                 for <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% object | url %]">Bibliographic record [% object | html %]</a>
415                             [% END %]
416                             [% IF ( MEMBERS ) %]
417                                 for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% object | url %]">[% INCLUDE 'patron-title.inc' %]</a>
418                             [% END %]
419                             .
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' %]