View | Details | Raw Unified | Return to bug 28007
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/access_files.tt (-2 / +2 lines)
Lines 28-34 Link Here
28
                <tr>
28
                <tr>
29
                    <th>Name</th>
29
                    <th>Name</th>
30
                    <th>Size (bytes)</th>
30
                    <th>Size (bytes)</th>
31
                    <th class="title-string">Date last modified</th>
31
                    <th>Date last modified</th>
32
                </tr>
32
                </tr>
33
            </thead>
33
            </thead>
34
            <tbody>
34
            <tbody>
Lines 36-42 Link Here
36
                <tr>
36
                <tr>
37
                    <td><a href="/cgi-bin/koha/tools/access_files.pl?id=[% file.id |url %]">[% file.name | html %]</a></td>
37
                    <td><a href="/cgi-bin/koha/tools/access_files.pl?id=[% file.id |url %]">[% file.name | html %]</a></td>
38
                    <td align="right">[% file.size | html %]</td>
38
                    <td align="right">[% file.size | html %]</td>
39
                    <td><span title="[% file.date | html %]">[% file.date | $KohaDates %]</span></td>
39
                    <td data-order="[% file.date | html %]">[% file.date | $KohaDates %]</td>
40
                </tr>
40
                </tr>
41
                [% END %]
41
                [% END %]
42
            </tbody>
42
            </tbody>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt (-6 / +13 lines)
Lines 256-262 td.repeatableyearly a.ui-state-default { background: #FFCC66 none; color : Bl Link Here
256
<tbody>
256
<tbody>
257
  [% FOREACH EXCEPTION_HOLIDAYS_LOO IN EXCEPTION_HOLIDAYS_LOOP %]
257
  [% FOREACH EXCEPTION_HOLIDAYS_LOO IN EXCEPTION_HOLIDAYS_LOOP %]
258
  <tr>
258
  <tr>
259
  <td><a href="/cgi-bin/koha/tools/holidays.pl?branch=[% branch | uri %]&amp;calendardate=[% EXCEPTION_HOLIDAYS_LOO.DATE | uri %]"><span title="[% EXCEPTION_HOLIDAYS_LOO.DATE_SORT | html %]">[% EXCEPTION_HOLIDAYS_LOO.DATE | html %]</span></a></td>
259
  <td data-order="[% EXCEPTION_HOLIDAYS_LOO.DATE_SORT | html %]">
260
    <a href="/cgi-bin/koha/tools/holidays.pl?branch=[% branch | uri %]&amp;calendardate=[% EXCEPTION_HOLIDAYS_LOO.DATE | uri %]">
261
        [% EXCEPTION_HOLIDAYS_LOO.DATE | html %]
262
    </a>
263
    </td>
260
  <td>[% EXCEPTION_HOLIDAYS_LOO.TITLE | html %]</td>
264
  <td>[% EXCEPTION_HOLIDAYS_LOO.TITLE | html %]</td>
261
  <td>[% EXCEPTION_HOLIDAYS_LOO.DESCRIPTION | html %]</td>
265
  <td>[% EXCEPTION_HOLIDAYS_LOO.DESCRIPTION | html %]</td>
262
  </tr>
266
  </tr>
Lines 305-311 td.repeatableyearly a.ui-state-default { background: #FFCC66 none; color : Bl Link Here
305
<tbody>
309
<tbody>
306
  [% FOREACH DAY_MONTH_HOLIDAYS_LOO IN DAY_MONTH_HOLIDAYS_LOOP %]
310
  [% FOREACH DAY_MONTH_HOLIDAYS_LOO IN DAY_MONTH_HOLIDAYS_LOOP %]
307
  <tr>
311
  <tr>
308
  <td><span title="[% DAY_MONTH_HOLIDAYS_LOO.DATE_SORT | html %]">[% DAY_MONTH_HOLIDAYS_LOO.DATE | html %]</span></td>
312
        <td data-order="[% DAY_MONTH_HOLIDAYS_LOO.DATE_SORT | html %]">
313
            [% DAY_MONTH_HOLIDAYS_LOO.DATE | html %]
314
        </td>
309
  <td>[% DAY_MONTH_HOLIDAYS_LOO.TITLE | html %]</td>
315
  <td>[% DAY_MONTH_HOLIDAYS_LOO.TITLE | html %]</td>
310
  <td>[% DAY_MONTH_HOLIDAYS_LOO.DESCRIPTION | html %]</td>
316
  <td>[% DAY_MONTH_HOLIDAYS_LOO.DESCRIPTION | html %]</td>
311
  </tr>
317
  </tr>
Lines 327-333 td.repeatableyearly a.ui-state-default { background: #FFCC66 none; color : Bl Link Here
327
<tbody>
333
<tbody>
328
    [% FOREACH HOLIDAYS_LOO IN HOLIDAYS_LOOP %]
334
    [% FOREACH HOLIDAYS_LOO IN HOLIDAYS_LOOP %]
329
<tr>
335
<tr>
330
  <td><a href="/cgi-bin/koha/tools/holidays.pl?branch=[% branch | uri %]&amp;calendardate=[% HOLIDAYS_LOO.DATE | uri %]"><span title="[% HOLIDAYS_LOO.DATE_SORT | html %]">[% HOLIDAYS_LOO.DATE | html %]</span></a></td>
336
    <td data-order="[% HOLIDAYS_LOO.DATE_SORT | html %]">
337
        <a href="/cgi-bin/koha/tools/holidays.pl?branch=[% branch | uri %]&amp;calendardate=[% HOLIDAYS_LOO.DATE | uri %]">
338
            [% HOLIDAYS_LOO.DATE | html %]
339
        </a>
340
    </td>
331
  <td>[% HOLIDAYS_LOO.TITLE | html %]</td>
341
  <td>[% HOLIDAYS_LOO.TITLE | html %]</td>
332
  <td>[% HOLIDAYS_LOO.DESCRIPTION.replace('\\\r\\\n', '<br />') | html %]</td>
342
  <td>[% HOLIDAYS_LOO.DESCRIPTION.replace('\\\r\\\n', '<br />') | html %]</td>
333
</tr>
343
</tr>
Lines 514-522 td.repeatableyearly a.ui-state-default { background: #FFCC66 none; color : Bl Link Here
514
            }));
524
            }));
515
            $("#holidayexceptions,#holidaysyearlyrepeatable,#holidaysunique").dataTable($.extend(true, {}, dataTablesDefaults, {
525
            $("#holidayexceptions,#holidaysyearlyrepeatable,#holidaysunique").dataTable($.extend(true, {}, dataTablesDefaults, {
516
                "sDom": 't',
526
                "sDom": 't',
517
                "aoColumns": [
518
                    { "sType": "title-string" },null,null
519
                ],
520
                "bPaginate": false
527
                "bPaginate": false
521
            }));
528
            }));
522
            $("a.helptext").click(function(){
529
            $("a.helptext").click(function(){
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt (-8 / +7 lines)
Lines 213-226 Link Here
213
        <tr>
213
        <tr>
214
            [% UNLESS uploadedbarcodesflag %]<th>Seen</th>[% END %]
214
            [% UNLESS uploadedbarcodesflag %]<th>Seen</th>[% END %]
215
            <th>Barcode</th>
215
            <th>Barcode</th>
216
            <th class="title-string">Call number</th>
216
            <th>Call number</th>
217
            <th>Library</th>
217
            <th>Library</th>
218
            <th class="anti-the">Title</th>
218
            <th class="anti-the">Title</th>
219
            <th>Not for loan</th>
219
            <th>Not for loan</th>
220
            <th>Lost</th>
220
            <th>Lost</th>
221
            <th>Damaged</th>
221
            <th>Damaged</th>
222
            <th>Withdrawn</th>
222
            <th>Withdrawn</th>
223
            <th class="title-string">Last seen</th>
223
            <th>Last seen</th>
224
            <th>Problems</th>
224
            <th>Problems</th>
225
        </tr>
225
        </tr>
226
    </thead>
226
    </thead>
Lines 235-242 Link Here
235
            <td>
235
            <td>
236
            [% result.barcode | html %]
236
            [% result.barcode | html %]
237
            </td>
237
            </td>
238
            <td>
238
            <td data-order="[% result.cn_sort | html %]">
239
                <span title="[% result.cn_sort | html %]">[% result.itemcallnumber | html %]</span>
239
                [% result.itemcallnumber | html %]
240
            </td>
240
            </td>
241
            <td>
241
            <td>
242
                [% Branches.GetName( result.homebranch ) | html %]
242
                [% Branches.GetName( result.homebranch ) | html %]
Lines 260-267 Link Here
260
            <td>
260
            <td>
261
            [% result.withdrawn | html %]
261
            [% result.withdrawn | html %]
262
            </td>
262
            </td>
263
            <td>
263
            <td data-order="[% result.datelastseen | html %]">
264
                <span title="[% result.datelastseen | html %]">[% result.datelastseen | $KohaDates%]</span>
264
                [% result.datelastseen | $KohaDates%]
265
            </td>
265
            </td>
266
            <td>
266
            <td>
267
            [% FOREACH problem IN result.problems %]
267
            [% FOREACH problem IN result.problems %]
Lines 371-378 Link Here
371
                    // first column contains checkboxes
371
                    // first column contains checkboxes
372
                    "aoColumnDefs": [
372
                    "aoColumnDefs": [
373
                        { "sType": "anti-the", "aTargets" : [ "anti-the" ] },
373
                        { "sType": "anti-the", "aTargets" : [ "anti-the" ] },
374
                        { "bSortable": false, "bSearchable": false, "aTargets": [ 0 ] },
374
                        { "bSortable": false, "bSearchable": false, "aTargets": [ 0 ] }
375
                        { "sType": "title-string", "aTargets" : [ "title-string" ] },
376
                    ],
375
                    ],
377
                    // 3rd column is callnumber
376
                    // 3rd column is callnumber
378
                    "aaSorting": [[ 2, "asc" ]],
377
                    "aaSorting": [[ 2, "asc" ]],
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/koha-news.tt (-6 / +5 lines)
Lines 119-126 Edit news item[% ELSE %]Add news item[% END %][% ELSE %]News[% END %]</div> Link Here
119
                        <th>Location</th>
119
                        <th>Location</th>
120
                        <th>Library</th>
120
                        <th>Library</th>
121
                        <th>Number</th>
121
                        <th>Number</th>
122
                        <th class="title-string">Publication date</th>
122
                        <th>Publication date</th>
123
                        <th class="title-string">Expiration date</th>
123
                        <th>Expiration date</th>
124
                        <th class="anti-the">Title</th>
124
                        <th class="anti-the">Title</th>
125
                        <th>Author</th>
125
                        <th>Author</th>
126
                        <th class="anti-the">News</th>
126
                        <th class="anti-the">News</th>
Lines 151-158 Edit news item[% ELSE %]Add news item[% END %][% ELSE %]News[% END %]</div> Link Here
151
                                [% ELSE %][% opac_new.branchname | html %]
151
                                [% ELSE %][% opac_new.branchname | html %]
152
                                [% END %]</td>
152
                                [% END %]</td>
153
                            <td>[% opac_new.number | html %]</td>
153
                            <td>[% opac_new.number | html %]</td>
154
                            <td><span title="[% opac_new.newdate | html %]">[% opac_new.newdate | $KohaDates %]</span></td>
154
                            <td data-order="[% opac_new.newdate | html %]">[% opac_new.newdate | $KohaDates %]</td>
155
                            <td><span title="[% opac_new.expirationdate | html %]">[% opac_new.expirationdate | $KohaDates %] [% IF ( opac_new.expired ) %](<span class="expired">expired</span>)[% END %]</span></td>
155
                            <td data-order="[% opac_new.expirationdate | html %]">[% opac_new.expirationdate | $KohaDates %] [% IF ( opac_new.expired ) %](<span class="expired">expired</span>)[% END %]</td>
156
                            <td>[% opac_new.title | html %]</td>
156
                            <td>[% opac_new.title | html %]</td>
157
                            <td>[% opac_new.author_title | html %] [% opac_new.author_firstname | html %] [% opac_new.author_surname | html %]</td>
157
                            <td>[% opac_new.author_title | html %] [% opac_new.author_firstname | html %] [% opac_new.author_surname | html %]</td>
158
                            <td>
158
                            <td>
Lines 315-322 Edit news item[% ELSE %]Add news item[% END %][% ELSE %]News[% END %]</div> Link Here
315
                    "order": [[ 4, "desc" ]],
315
                    "order": [[ 4, "desc" ]],
316
                    "aoColumnDefs": [
316
                    "aoColumnDefs": [
317
                        { "sortable": false, "searchable": false, 'targets': [ 'NoSort' ] },
317
                        { "sortable": false, "searchable": false, 'targets': [ 'NoSort' ] },
318
                        { "type": "anti-the", "targets": [ "anti-the" ] },
318
                        { "type": "anti-the", "targets": [ "anti-the" ] }
319
                        { "type": "title-string", "targets" : [ "title-string"] }
320
                    ],
319
                    ],
321
                    "sPaginationType": "full_numbers"
320
                    "sPaginationType": "full_numbers"
322
                }));
321
                }));
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt (-2 / +2 lines)
Lines 144-150 Link Here
144
                                    <th>Module</th>
144
                                    <th>Module</th>
145
                                    <th>Code</th>
145
                                    <th>Code</th>
146
                                    <th>Name</th>
146
                                    <th>Name</th>
147
                                    <th class="title-string">Last updated</th>
147
                                    <th>Last updated</th>
148
                                    <th class="NoSort noExport">Copy notice</th>
148
                                    <th class="NoSort noExport">Copy notice</th>
149
                                    <th class="NoSort noExport">Actions</th>
149
                                    <th class="NoSort noExport">Actions</th>
150
                                </tr>
150
                                </tr>
Lines 179-185 Link Here
179
                                        </td>
179
                                        </td>
180
                                        <td>[% lette.code | html %]</td>
180
                                        <td>[% lette.code | html %]</td>
181
                                        <td>[% lette.name | html %]</td>
181
                                        <td>[% lette.name | html %]</td>
182
                                        <td><span title="[% lette.updated_on | $KohaDates with_hours = 1 %]">[% lette.updated_on | $KohaDates with_hours = 1 %]</span></td>
182
                                        <td data-order="[% lette.updated_on | html %]">[% lette.updated_on | $KohaDates with_hours = 1 %]</td>
183
                                        <td class="actions">
183
                                        <td class="actions">
184
                                            [% IF !independant_branch || !lette.branchcode %]
184
                                            [% IF !independant_branch || !lette.branchcode %]
185
                                                <form method="post" action="/cgi-bin/koha/tools/letter.pl">
185
                                                <form method="post" action="/cgi-bin/koha/tools/letter.pl">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt (-5 / +5 lines)
Lines 151-158 Link Here
151
                                                <th>Primary email</th>
151
                                                <th>Primary email</th>
152
                                                <th>Phone</th>
152
                                                <th>Phone</th>
153
                                                <th>Mobile</th>
153
                                                <th>Mobile</th>
154
                                                <th class="title-string">Registration date</th>
154
                                                <th>Registration date</th>
155
                                                <th class="title-string">Expiry date</th>
155
                                                <th>Expiry date</th>
156
                                                <th>Circulation note</th>
156
                                                <th>Circulation note</th>
157
                                                <th>OPAC note</th>
157
                                                <th>OPAC note</th>
158
                                                <th>Restriction expiration</th>
158
                                                <th>Restriction expiration</th>
Lines 183-193 Link Here
183
                                                    <td>[% borrower.email | html %]</td>
183
                                                    <td>[% borrower.email | html %]</td>
184
                                                    <td>[% borrower.phone | html %]</td>
184
                                                    <td>[% borrower.phone | html %]</td>
185
                                                    <td>[% borrower.mobile | html %]</td>
185
                                                    <td>[% borrower.mobile | html %]</td>
186
                                                    <td><span title="[% borrower.dateenrolled | html %]">[% borrower.dateenrolled | $KohaDates %]</span></td>
186
                                                    <td data-order="[% borrower.dateenrolled | html %]">[% borrower.dateenrolled | $KohaDates %]</td>
187
                                                    <td><span title="[% borrower.dateexpiry | html %]">[% borrower.dateexpiry | $KohaDates %]</span></td>
187
                                                    <td data-order="[% borrower.dateexpiry | html %]">[% borrower.dateexpiry | $KohaDates %]</td>
188
                                                    <td>[% borrower.borrowernotes | html %]</td>
188
                                                    <td>[% borrower.borrowernotes | html %]</td>
189
                                                    <td>[% borrower.opacnote | html %]</td>
189
                                                    <td>[% borrower.opacnote | html %]</td>
190
                                                    <td><span title="[% borrower.debarred | html %]">[% borrower.debarred | $KohaDates %]</span></td>
190
                                                    <td data-order="[% borrower.debarred | html %]">[% borrower.debarred | $KohaDates %]</td>
191
                                                    <td>[% borrower.debarredcomment | html %]</td>
191
                                                    <td>[% borrower.debarredcomment | html %]</td>
192
                                                    [% FOREACH pa IN borrower.patron_attributes %]
192
                                                    [% FOREACH pa IN borrower.patron_attributes %]
193
                                                        [% IF ( pa.code ) %]
193
                                                        [% IF ( pa.code ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt (-3 / +2 lines)
Lines 65-71 Link Here
65
                                <th class="anti-the">Message</th>
65
                                <th class="anti-the">Message</th>
66
                                <th>Problem page</th>
66
                                <th>Problem page</th>
67
                                <th>Sent to</th>
67
                                <th>Sent to</th>
68
                                <th class="title-string">Created on</th>
68
                                <th>Created on</th>
69
                                <th>Set by</th>
69
                                <th>Set by</th>
70
                                <th>Status</th>
70
                                <th>Status</th>
71
                                <th class="NoSort noExport">Actions</th>
71
                                <th class="NoSort noExport">Actions</th>
Lines 86-92 Link Here
86
                                        [% CASE 'library' %]A librarian
86
                                        [% CASE 'library' %]A librarian
87
                                        [% END %]
87
                                        [% END %]
88
                                    </td>
88
                                    </td>
89
                                    <td><span title="[% report.created_on | html %]">[% report.created_on | $KohaDates with_hours => 1 %]</span></td>
89
                                    <td data-order="[% report.created_on | html %]">[% report.created_on | $KohaDates with_hours => 1 %]</td>
90
                                    <td>[% INCLUDE 'patron-title.inc' patron => report.patron hide_patron_infos_if_needed=1 %]</td>
90
                                    <td>[% INCLUDE 'patron-title.inc' patron => report.patron hide_patron_infos_if_needed=1 %]</td>
91
                                    <td class="status[% report.status | html %]" name="status">
91
                                    <td class="status[% report.status | html %]" name="status">
92
                                        <span id="status_[% report.reportid | html %]">
92
                                        <span id="status_[% report.reportid | html %]">
93
- 

Return to bug 28007