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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt (-1 / +1 lines)
Lines 68-74 Link Here
68
                                    <td>[% cr.item.itemcallnumber %]</td>
68
                                    <td>[% cr.item.itemcallnumber %]</td>
69
                                    <td>[% cr.item.copynumber %]</td>
69
                                    <td>[% cr.item.copynumber %]</td>
70
                                    <td>[% INCLUDE 'item-status.inc' item=cr.item issue=cr.issue %]</td>
70
                                    <td>[% INCLUDE 'item-status.inc' item=cr.item issue=cr.issue %]</td>
71
                                    <td>[% cr.issue.date_due | $KohaDates %]</td>
71
                                    <td>[% cr.issue.date_due | $KohaDates with_hours => 1 %]</td>
72
                                    <td>[% cr.public_note %]</td>
72
                                    <td>[% cr.public_note %]</td>
73
                                </tr>
73
                                </tr>
74
                            [% END %]
74
                            [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-1 / +1 lines)
Lines 1199-1205 Link Here
1199
                    [% IF ( itemdata_copynumber ) %]<td class="copynumber">[% ITEM_RESULT.copynumber %]</td>[% END %]
1199
                    [% IF ( itemdata_copynumber ) %]<td class="copynumber">[% ITEM_RESULT.copynumber %]</td>[% END %]
1200
                    <td class="status">[% INCLUDE 'item-status-schema-org.inc' item = ITEM_RESULT %][% INCLUDE 'item-status.inc' item = ITEM_RESULT %]</td>
1200
                    <td class="status">[% INCLUDE 'item-status-schema-org.inc' item = ITEM_RESULT %][% INCLUDE 'item-status.inc' item = ITEM_RESULT %]</td>
1201
                    [% IF ( itemdata_itemnotes ) %]<td class="notes" property="description">[% ITEM_RESULT.itemnotes %]</td>[% END %]
1201
                    [% IF ( itemdata_itemnotes ) %]<td class="notes" property="description">[% ITEM_RESULT.itemnotes %]</td>[% END %]
1202
                    <td class="date_due"><span title="[% ITEM_RESULT.datedue %]">[% ITEM_RESULT.datedue | $KohaDates %]</span></td>
1202
                    <td class="date_due"><span title="[% ITEM_RESULT.datedue %]">[% ITEM_RESULT.datedue | $KohaDates with_hours => 1 %]</span></td>
1203
                    [% IF ( OPACShowBarcode ) %]<td class="barcode" property="serialNumber">[% ITEM_RESULT.barcode %]</td>[% END %]
1203
                    [% IF ( OPACShowBarcode ) %]<td class="barcode" property="serialNumber">[% ITEM_RESULT.barcode %]</td>[% END %]
1204
                    [% IF holds_count.defined || show_priority %]
1204
                    [% IF holds_count.defined || show_priority %]
1205
                        <td class="holds_count">
1205
                        <td class="holds_count">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-3 / +3 lines)
Lines 172-185 Link Here
172
                                                    <td class="date_due overdue">
172
                                                    <td class="date_due overdue">
173
                                                        <span title="[% ISSUE.date_due %]">
173
                                                        <span title="[% ISSUE.date_due %]">
174
                                                            <span class="tdlabel">Date due:</span>
174
                                                            <span class="tdlabel">Date due:</span>
175
                                                            [% ISSUE.date_due | $KohaDates %]
175
                                                            [% ISSUE.date_due | $KohaDates with_hours => 1 %]
176
                                                        </span>
176
                                                        </span>
177
                                                    </td>
177
                                                    </td>
178
                                                [% ELSE %]
178
                                                [% ELSE %]
179
                                                    <td class="date_due">
179
                                                    <td class="date_due">
180
                                                        <span title="[% ISSUE.date_due %]">
180
                                                        <span title="[% ISSUE.date_due %]">
181
                                                            <span class="tdlabel">Date due:</span>
181
                                                            <span class="tdlabel">Date due:</span>
182
                                                            [% ISSUE.date_due | $KohaDates %]
182
                                                            [% ISSUE.date_due | $KohaDates with_hours => 1 %]
183
                                                        </span>
183
                                                        </span>
184
                                                    </td>
184
                                                    </td>
185
                                                [% END %]
185
                                                [% END %]
Lines 428-434 Link Here
428
                                                <td>
428
                                                <td>
429
                                                    <span title="[% OVERDUE.date_due %]">
429
                                                    <span title="[% OVERDUE.date_due %]">
430
                                                        <span class="tdlabel">Date due:</span>
430
                                                        <span class="tdlabel">Date due:</span>
431
                                                        [% OVERDUE.date_due | $KohaDates %]
431
                                                        [% OVERDUE.date_due | $KohaDates with_hours => 1 %]
432
                                                    </span>
432
                                                    </span>
433
                                                </td>
433
                                                </td>
434
                                                [% IF ( OpacRenewalAllowed ) %]
434
                                                [% IF ( OpacRenewalAllowed ) %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-course-details.tt (-1 / +1 lines)
Lines 60-66 Link Here
60
                            <td>[% cr.item.itemcallnumber %]</td>
60
                            <td>[% cr.item.itemcallnumber %]</td>
61
                            <td>[% cr.item.copynumber %]</td>
61
                            <td>[% cr.item.copynumber %]</td>
62
                            <td>[% INCLUDE 'item-status.inc' item=cr.item issue=cr.issue %]</td>
62
                            <td>[% INCLUDE 'item-status.inc' item=cr.item issue=cr.issue %]</td>
63
                            <td>[% cr.issue.date_due | $KohaDates %]</td>
63
                            <td>[% cr.issue.date_due | $KohaDates with_hours => 1 %]</td>
64
                            <td>[% cr.public_note %]</td>
64
                            <td>[% cr.public_note %]</td>
65
                        </tr>
65
                        </tr>
66
                    [% END %]
66
                    [% END %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt (-1 / +1 lines)
Lines 1581-1587 YAHOO.util.Event.onContentReady("furtherm", function () { Link Here
1581
               [% IF ( itemdata_copynumber ) %]<td class="copynumber">[% ITEM_RESULT.copynumber %]</td>[% END %]
1581
               [% IF ( itemdata_copynumber ) %]<td class="copynumber">[% ITEM_RESULT.copynumber %]</td>[% END %]
1582
              <td class="status">[% INCLUDE 'item-status-schema-org.inc' item = ITEM_RESULT %][% INCLUDE 'item-status.inc' item = ITEM_RESULT %]</td>
1582
              <td class="status">[% INCLUDE 'item-status-schema-org.inc' item = ITEM_RESULT %][% INCLUDE 'item-status.inc' item = ITEM_RESULT %]</td>
1583
             [% IF ( itemdata_itemnotes ) %]<td class="notes" property="description">[% ITEM_RESULT.itemnotes %]</td>[% END %]
1583
             [% IF ( itemdata_itemnotes ) %]<td class="notes" property="description">[% ITEM_RESULT.itemnotes %]</td>[% END %]
1584
        <td class="date_due"><span title="[% ITEM_RESULT.datedue %]">[% ITEM_RESULT.datedue | $KohaDates %]</span></td>
1584
        <td class="date_due"><span title="[% ITEM_RESULT.datedue %]">[% ITEM_RESULT.datedue | $KohaDates with_hours => 1 %]</span></td>
1585
        [% IF ( OPACShowBarcode ) %]<td class="barcode" property="serialNumber">[% ITEM_RESULT.barcode %]</td>[% END %]
1585
        [% IF ( OPACShowBarcode ) %]<td class="barcode" property="serialNumber">[% ITEM_RESULT.barcode %]</td>[% END %]
1586
        [% IF holds_count.defined || show_priority %]
1586
        [% IF holds_count.defined || show_priority %]
1587
        <td class="holds_count">
1587
        <td class="holds_count">
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt (-4 / +3 lines)
Lines 184-192 var MSG_CONFIRM_RESUME_HOLDS = _("Are you sure you want to resume all suspended Link Here
184
                        [% ISSUE.author %]
184
                        [% ISSUE.author %]
185
                    </span></td>
185
                    </span></td>
186
                [% IF ( ISSUE.overdue ) %]
186
                [% IF ( ISSUE.overdue ) %]
187
                    <td class="date_due overdue"><span title="[% ISSUE.date_due %]">[% ISSUE.date_due | $KohaDates %]</span></td>
187
                    <td class="date_due overdue"><span title="[% ISSUE.date_due %]">[% ISSUE.date_due | $KohaDates with_hours => 1 %]</span></td>
188
                [% ELSE %]
188
                [% ELSE %]
189
                    <td class="date_due"><span title="[% ISSUE.date_due %]">[% ISSUE.date_due | $KohaDates %]</span></td>
189
                    <td class="date_due"><span title="[% ISSUE.date_due %]">[% ISSUE.date_due | $KohaDates with_hours => 1 %]</span></td>
190
                [% END %]
190
                [% END %]
191
                [% UNLESS ( item_level_itypes ) %]<td class="itype">[% IF ( ISSUE.imageurl ) %]<img src="[% ISSUE.imageurl %]" title="[% ISSUE.description %]" alt="[% ISSUE.description %]" />[% END %] [% ISSUE.description %]</td>[% END %]
191
                [% UNLESS ( item_level_itypes ) %]<td class="itype">[% IF ( ISSUE.imageurl ) %]<img src="[% ISSUE.imageurl %]" title="[% ISSUE.description %]" alt="[% ISSUE.description %]" />[% END %] [% ISSUE.description %]</td>[% END %]
192
                [% IF ( show_barcode ) %]<td class="barcode">[% ISSUE.barcode %]</td>[% END %]
192
                [% IF ( show_barcode ) %]<td class="barcode">[% ISSUE.barcode %]</td>[% END %]
Lines 342-348 var MSG_CONFIRM_RESUME_HOLDS = _("Are you sure you want to resume all suspended Link Here
342
[% UNLESS ( item_level_itypes ) %]<td>[% IF ( OVERDUE.imageurl ) %]<img src="[% OVERDUE.imageurl %]" title="[% OVERDUE.description %]" alt="[% OVERDUE.description %]" />[% END %] [% OVERDUE.description %]</td>[% END %]
342
[% UNLESS ( item_level_itypes ) %]<td>[% IF ( OVERDUE.imageurl ) %]<img src="[% OVERDUE.imageurl %]" title="[% OVERDUE.description %]" alt="[% OVERDUE.description %]" />[% END %] [% OVERDUE.description %]</td>[% END %]
343
[% IF ( show_barcode ) %]<td>[% OVERDUE.barcode %]</td>[% END %]
343
[% IF ( show_barcode ) %]<td>[% OVERDUE.barcode %]</td>[% END %]
344
<td>[% OVERDUE.itemcallnumber %]</td>
344
<td>[% OVERDUE.itemcallnumber %]</td>
345
<td><span title="[% OVERDUE.date_due %]">[% OVERDUE.date_due | $KohaDates %]</span></td>
345
<td><span title="[% OVERDUE.date_due %]">[% OVERDUE.date_due | $KohaDates with_hours => 1 %]</span></td>
346
                [% IF ( OpacRenewalAllowed ) %]
346
                [% IF ( OpacRenewalAllowed ) %]
347
<td>
347
<td>
348
[% IF ( OVERDUE.debarred ) %]Account frozen
348
[% IF ( OVERDUE.debarred ) %]Account frozen
349
- 

Return to bug 9723